39 lines
687 B
JSON
39 lines
687 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"types": [
|
|
"node",
|
|
"express",
|
|
"multer",
|
|
"cors",
|
|
"jsonwebtoken",
|
|
"bcryptjs",
|
|
"compression",
|
|
"pg",
|
|
"validator",
|
|
"uuid",
|
|
"nodemailer",
|
|
"supertest",
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"tests",
|
|
"scripts"
|
|
]
|
|
} |