@excli/express
Version:
A cli tool for creating Express.js applications, supporting both JavaScript and TypeScript.
32 lines (31 loc) • 775 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmitOnError": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"rootDir": "src",
"outDir": "dist",
"composite": false,
"declaration": true,
"sourceMap": true,
"noImplicitThis": true,
"noImplicitAny": true,
"allowUnreachableCode": false,
"allowJs": false,
"maxNodeModuleJsDepth": 1
},
"include": ["src/**/*", "types/**/*"],
"exclude": ["node_modules", "dist", "build", "templates"]
}