arrow-express
Version:
Library to bootstrap express applications with zero configuration
24 lines • 641 B
JSON
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022"],
"outDir": "dist",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": ["node", "vitest/globals"],
"allowImportingTsExtensions": false,
"noEmit": true
},
"include": [
"lib/**/*.ts",
"vitest.config.ts"
],
}