tsconfig.json 643 B

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