You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
584 B

3 years ago
  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. ".vscode-test"
  20. ]
  21. }