tsconfig.json 503 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "ES2019",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "lib": ["DOM", "ES2020"],
  7. "strict": true,
  8. "composite": true,
  9. "declaration": true,
  10. "outDir": "dist",
  11. "rootDir": "src",
  12. "skipLibCheck": true,
  13. "verbatimModuleSyntax": true
  14. },
  15. "include": [
  16. "src/ambient.d.ts",
  17. "src/index.ts",
  18. "src/types.ts",
  19. "src/options.ts",
  20. "src/styles.ts",
  21. "src/chart.ts",
  22. "src/worker.ts",
  23. "src/viewer.ts"
  24. ]
  25. }