1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-10 13:55:03 +00:00
mon-entreprise/server/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

41 lines
951 B
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
},
"ts-node": {
"esm": true,
"files": true
},
"include": ["source", "types/**/*.d.ts"],
"exclude": ["**/node_modules", "**/dist", "vitest.config.ts"]
}