1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-10 13:55:03 +00:00
mon-entreprise/api/tsconfig.json
Johan Girod b28fd65586 Revert "fix: change node version to 21"
This reverts commit 4b5e946eb9.

# Conflicts:
#	site/package.json
#	yarn.lock
2023-12-15 10:18:21 +01:00

43 lines
1 KiB
JSON

{
"compilerOptions": {
/* Basic Options */
"incremental": true,
"target": "ES2020",
"module": "NodeNext",
"outDir": "dist",
"declaration": true,
/* Strict Type-Checking Options */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"moduleResolution": "NodeNext",
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
/* Advanced Options */
"forceConsistentCasingInFileNames": true,
// remove this when vite support "NodeNext" : https://github.com/vitejs/vite/issues/10481 or https://github.com/vitejs/vite/issues/8993
"skipLibCheck": true
},
"ts-node": {
"esm": true
},
"include": ["source"],
"exclude": ["**/dist", "vitest.config.ts"]
}