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

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

40 lines
881 B
JSON
Raw Normal View History

2022-05-16 14:29:59 +02:00
{
"compilerOptions": {
/* Basic Options */
"incremental": true,
"target": "ES2022",
"module": "ES2022",
"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-17 14:18:32 +02:00
"moduleResolution": "NodeNext",
2022-05-16 14:29:59 +02:00
"esModuleInterop": true,
"resolveJsonModule": true,
/* Advanced Options */
"forceConsistentCasingInFileNames": true
},
"ts-node": {
"esm": true
},
"include": ["source"],
"exclude": ["**/node_modules", "**/dist", "**/*.test.*"]
}