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