1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 16:26:45 +00:00
mon-entreprise/api/tsconfig.json

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

41 lines
915 B
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,
"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 */
"forceConsistentCasingInFileNames": true
2022-05-16 14:29:59 +02:00
},
"ts-node": {
"esm": true
},
2022-05-25 17:48:28 +02:00
"include": ["source"],
2022-06-02 15:28:08 +02:00
"exclude": ["**/node_modules", "**/dist", "vitest.config.ts"]
2022-05-16 14:29:59 +02:00
}