123456789101112131415161718192021222324252627 |
- {
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "compilerOptions": {
- "target": "ES2020",
- "jsx": "preserve",
- "jsxFactory": "h",
- "jsxFragmentFactory": "Fragment",
- "lib": ["ES2020", "DOM"],
- "baseUrl": ".",
- "module": "ES2020",
- "moduleResolution": "node",
- "paths": {
- "@/*": ["src/*"]
- },
- "resolveJsonModule": true,
- "allowJs": true,
- "checkJs": true,
- "strict": true,
- "noImplicitAny": false,
- "sourceMap": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "ignoreDeprecations": "5.0"
- },
- "include": ["src/**/*", "src/**/*.vue", "vite.config.ts"],
- "exclude": ["node_modules", "dist", "**/*.js"]
- }
|