tsconfig.json 863 B

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