12345678910111213141516171819202122232425262728 |
- {
- "extends": "./tsconfig.base.json",
- "compilerOptions": {
- "composite": true,
- "jsx": "preserve",
- "lib": ["ES2018", "DOM", "DOM.Iterable"],
- "types": ["unplugin-vue-macros/macros-global"],
- "skipLibCheck": true
- },
- "include": [
- "packages",
- "typings/components.d.ts",
- "typings/env.d.ts",
- "typings/index.d.ts",
- "tag.d.ts.bk",
- "tag.d.ts.bk"
- ],
- "exclude": [
- "node_modules",
- "**/dist",
- "**/__tests__/**/*",
- "**/gulpfile.ts",
- "**/test-helper",
- "packages/test-utils",
- "**/*.md"
- ]
- }
- //
|