2022-11-10 17:31:41 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
/* Basic Options */
|
|
|
|
"incremental": true,
|
2022-12-08 18:32:37 +01:00
|
|
|
"target": "ESNext",
|
2022-11-10 17:31:41 +01:00
|
|
|
"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 */
|
2022-12-08 18:32:37 +01:00
|
|
|
// "noUnusedLocals": true,
|
|
|
|
// "noUnusedParameters": true,
|
2022-11-10 17:31:41 +01:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
|
|
|
/* Module Resolution Options */
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
|
|
|
/* Advanced Options */
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
},
|
2022-12-08 18:32:37 +01:00
|
|
|
"include": [
|
|
|
|
"données-code-APE/reduce-json.ts",
|
|
|
|
"données-NAF-CPF-APE/convert.ts",
|
2023-02-14 17:27:33 +01:00
|
|
|
"nombre-etablissements-par-code-ape-et-departement/*.ts",
|
2023-02-09 18:15:50 +01:00
|
|
|
"données-NomenclatureGuichet/convert.ts"
|
2022-12-08 18:32:37 +01:00
|
|
|
],
|
2022-11-10 17:31:41 +01:00
|
|
|
"exclude": ["**/node_modules"]
|
|
|
|
}
|