Enabling Typescript strict mode on the front
[libreadventure.git] / front / tsconfig.json
1 {
2 "compilerOptions": {
3 "outDir": "./dist/",
4 "sourceMap": true,
5 "moduleResolution": "node",
6 "noImplicitAny": true,
7 "module": "CommonJS",
8 "target": "es5",
9 "jsx": "react",
10 "allowJs": true,
11 "strict": true, /* Enable all strict type-checking options. */
12 "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13 "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
14 }
15 }