mirror of
https://github.com/ershisan99/node-ts-boilerplate.git
synced 2025-12-16 12:33:43 +00:00
41 lines
945 B
JSON
41 lines
945 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
|
|
"alwaysStrict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"removeComments": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"noEmitHelpers": false,
|
|
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": "."
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"include": ["src"]
|
|
}
|