express-generator-typescript
Version:
Generate new Express applications similar to express-generate which but sets it up to use TypeScript instead
30 lines (29 loc) • 614 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": ["ES2020"],
"strict": true,
"baseUrl": "./",
"outDir": "temp",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@src/*": ["src/*"]
},
"useUnknownInCatchVariables": false,
"sourceMap": false,
"removeComments": true
},
"include": [
"src/**/*.ts",
"config.ts"
],
"exclude": [
"spec",
"src/public/",
"scripts",
"eslint.config.ts"
]
}