tsconfig.json 529 B

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