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