workadventure/front/tsconfig.json

16 lines
544 B
JSON
Raw Normal View History

2020-04-03 14:56:21 +02:00
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"moduleResolution": "node",
"noImplicitAny": true,
"module": "CommonJS",
2020-04-03 14:56:21 +02:00
"target": "es5",
"jsx": "react",
"allowJs": true,
"strict": true, /* Enable all strict type-checking options. */
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
2020-04-03 14:56:21 +02:00
}
}