tsconfig.json 516 B

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