PokéScript Language support for Visual Studio Code.

tsconfig.json 800B

1234567891011121314151617181920212223
  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 Type-Checking Option */
  12. "strict": true, /* enable all strict type-checking options */
  13. /* Additional Checks */
  14. "noUnusedLocals": true /* Report errors on unused locals. */
  15. // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
  16. // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
  17. // "noUnusedParameters": true, /* Report errors on unused parameters. */
  18. },
  19. "exclude": [
  20. "node_modules",
  21. ".vscode-test"
  22. ]
  23. }