31 lines
604 B
JSON
31 lines
604 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"removeComments": true,
|
|
"noEmitOnError": false,
|
|
"types": [
|
|
"node",
|
|
"express"
|
|
]
|
|
},
|
|
"include": [
|
|
"api/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src"
|
|
]
|
|
} |