mon-entreprise/api/tsconfig.json

44 lines
1.0 KiB
JSON
Raw Normal View History

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