tsconfig.json 545 B

12345678910111213141516171819202122232425262728
  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. "declarationDir": "./dist/types",
  14. "declaration" : true,
  15. "declarationMap": true,
  16. "lib": [
  17. "dom",
  18. "es6"
  19. ],
  20. },
  21. "include": [
  22. "src/js/**/*.ts",
  23. ],
  24. "exclude": [
  25. "node_modules",
  26. "src/js/**/*.test.ts"
  27. ]
  28. }