tsconfig.web.json 559 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "./tsconfig.base.json",
  3. "compilerOptions": {
  4. "composite": true,
  5. "jsx": "preserve",
  6. "lib": ["ES2018", "DOM", "DOM.Iterable"],
  7. "types": ["unplugin-vue-macros/macros-global"],
  8. "skipLibCheck": true
  9. },
  10. "include": [
  11. "packages",
  12. "typings/components.d.ts",
  13. "typings/env.d.ts",
  14. "typings/index.d.ts",
  15. "tag.d.ts.bk",
  16. "tag.d.ts.bk"
  17. ],
  18. "exclude": [
  19. "node_modules",
  20. "**/dist",
  21. "**/__tests__/**/*",
  22. "**/gulpfile.ts",
  23. "**/test-helper",
  24. "packages/test-utils",
  25. "**/*.md"
  26. ]
  27. }
  28. //