Select Git revision
tsconfig.json
Mohamed AZIKIOU authored and
Mario HOTAJ
committed
tsconfig.json 885 B
{
"compilerOptions": {
"module": "commonjs",
"target": "es2019",
"lib": ["ES2019", "dom"],
"sourceMap": true,
"outDir": "dist",
"strict": true,
"noImplicitAny": false,
"allowJs": true,
"types": ["jest", "node"],
"moduleResolution": "Node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true
/* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",
".vscode-test",
"dist",
"out",
"media",
"resources",
"webpack.config.ts",
"jest.config.ts"
]
}