arrow-express
Version:
Library to bootstrap express applications with zero configuration
25 lines • 594 B
JSON
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"lib": ["ES2022"],
"outDir": "dist",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": ["node"]
},
"include": [
"lib/**/*.ts",
],
"exclude": [
"**/*.spec.ts",
"node_modules"
]
}