tsconfig.json 454 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "target": "ES2019",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "lib": [
  7. "DOM",
  8. "ES2020"
  9. ],
  10. "strict": true,
  11. "composite": true,
  12. "declaration": true,
  13. "outDir": "dist",
  14. "rootDir": "src",
  15. "skipLibCheck": true,
  16. "verbatimModuleSyntax": true
  17. },
  18. "include": [
  19. "src/**/*.ts",
  20. "src/**/*.d.ts"
  21. ],
  22. "references": [
  23. {
  24. "path": "../../core"
  25. }
  26. ]
  27. }