tsconfig.json 440 B

1234567891011121314151617181920212223242526
  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. ],
  21. "references": [
  22. {
  23. "path": "../../presets/all"
  24. }
  25. ]
  26. }