1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 05:15:02 +00:00
mon-entreprise/api/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1 KiB
JSON
Raw Normal View History

2022-05-16 14:29:59 +02:00
{
"compilerOptions": {
/* Basic Options */
2022-05-25 17:48:28 +02:00
"incremental": true,
2022-11-29 14:20:39 +01:00
"target": "ES2020",
2022-05-23 12:50:08 +02:00
"module": "NodeNext",
2022-05-16 14:29:59 +02:00
"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 */
2022-05-23 12:50:08 +02:00
"moduleResolution": "NodeNext",
"isolatedModules": true,
2022-05-16 14:29:59 +02:00
"esModuleInterop": true,
"resolveJsonModule": true,
/* Advanced Options */
2022-11-22 12:12:17 +01:00
"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
2022-05-16 14:29:59 +02:00
},
"ts-node": {
"esm": true
},
2022-11-29 14:20:39 +01:00
"include": ["source"],
"exclude": ["**/dist", "vitest.config.ts"]
2022-05-16 14:29:59 +02:00
}