1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-08 22:15:02 +00:00
mon-entreprise/tsconfig.json
2020-12-16 18:14:45 +01:00

26 lines
896 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"esModuleInterop": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowJs": true,
// The end goal is to enable `"strict": true` which correspond to the
// following settings: noImplicitAny, noImplicitThis, alwaysStrict,
// strictBindCallApply, strictNullChecks, strictFunctionTypes, and
// strictPropertyInitialization. During the transition we enable these
// settings one by one.
// Note: almost all parameters are now enabled. The only one remaining
// is noImplicitAny -- but it's a hard one.
"noImplicitThis": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"types": ["webpack-env"]
}
}