tsconfig.json 551 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "compilerOptions": {
  3. "target": "ES2019",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "lib": [
  7. "DOM",
  8. "ES2020"
  9. ],
  10. "types": [
  11. "node"
  12. ],
  13. "strict": true,
  14. "composite": true,
  15. "declaration": true,
  16. "outDir": "dist",
  17. "rootDir": "src",
  18. "skipLibCheck": true,
  19. "verbatimModuleSyntax": true
  20. },
  21. "include": [
  22. "src/**/*.ts"
  23. ],
  24. "references": [
  25. {
  26. "path": "../../core"
  27. },
  28. {
  29. "path": "../../presets/all"
  30. },
  31. {
  32. "path": "../web"
  33. }
  34. ]
  35. }