tsconfig.json 470 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "target": "ES2019",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "lib": [
  7. "DOM",
  8. "ES2020"
  9. ],
  10. "types": [
  11. "jquery"
  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. }