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) • 619 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"strict": true,
"baseUrl": "./",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@src/*": ["src/*"]
},
"useUnknownInCatchVariables": false,
"types": ["vitest/globals"]
},
"ts-node": {
"swc": true,
"require": ["tsconfig-paths/register", "dotenv/config"],
},
"include": [
"src/**/*.ts",
"tests/**/*.ts",
"scripts",
"eslint.config.ts",
"vitest.config.mts"
],
"exclude": ["src/public/*"]
}