tsconfig.json 571 B

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