lecoffre-back-mini/tsconfig.json
2025-09-07 15:30:32 +02:00

42 lines
816 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true,
"removeComments": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"noImplicitAny": false,
},
"ts-node": {
"compilerOptions": {
"noImplicitAny": false,
"skipLibCheck": true
}
},
"include": [
"src/**/*",
"global.d.ts"
],
"typeRoots": [
"node_modules/@types",
"src"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"test-*.js",
"quick-*.js"
]
}