express-template/tsconfig.json

23 lines
532 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"allowJs": true,
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"strict": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
},
"include": ["src/**/*"]
}