tsconfig.web.json 476 B

1234567891011121314151617181920
  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": ["packages", "typings/components.d.ts", "typings/env.d.ts"],
  11. "exclude": [
  12. "node_modules",
  13. "**/dist",
  14. "**/__tests__/**/*",
  15. "**/gulpfile.ts",
  16. "**/test-helper",
  17. "packages/test-utils",
  18. "**/*.md"
  19. ]
  20. }