21 lines · json
1{2 "compilerOptions": {3 "module": "commonjs",4 "target": "es6",5 "outDir": "out",6 "lib": [7 "es6"8 ],9 "sourceMap": true,10 "rootDir": "src",11 "strict": true /* enable all strict type-checking options */12 /* Additional Checks */13 // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */14 // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */15 // "noUnusedParameters": true, /* Report errors on unused parameters. */16 },17 "exclude": [18 "node_modules"19 ]20}21