tsconfig.json 451 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "outDir": "dist",
  4. "target": "es6",
  5. "sourceMap": true,
  6. "mapRoot": "./",
  7. "moduleResolution": "node",
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "noImplicitAny": true,
  11. "suppressImplicitAnyIndexErrors": true,
  12. "allowJs": false,
  13. "lib": [
  14. "dom",
  15. "es6"
  16. ],
  17. },
  18. "include": [
  19. "src/js/**/*.ts",
  20. ],
  21. "exclude": [
  22. "node_modules",
  23. "src/js/**/*.test.ts"
  24. ]
  25. }