tsconfig.web.json 499 B

12345678910111213
  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", "typings/index.d.ts"],
  11. "exclude": ["node_modules", "**/dist", "**/__tests__/**/*", "**/gulpfile.ts", "**/test-helper", "packages/test-utils", "**/*.md"]
  12. }
  13. //