express-typescript-jest-supertest
Version:
Tool to generate express boilerplate application
22 lines (21 loc) • 499 B
JSON
{
"compilerOptions": {
"moduleResolution": "node",
"target": "ES2019",
"noImplicitAny": true,
"module": "CommonJS",
"baseUrl": "./src",
"rootDir": "./src",
"outDir": "./build",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"paths": {
"src/*": [
"./src/*"
]
}
},
"include": ["./src"],
"exclude": ["node_modules"]
}