tsconfig.json 477 B

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