1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "noLib": false,
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": false,
- "jsx": "preserve",
- "baseUrl": ".",
- "allowJs": true,
- "sourceMap": true,
- "esModuleInterop": true,
- "resolveJsonModule": true,
- "isolatedModules": false,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "experimentalDecorators": true,
- "lib": ["dom", "esnext"],
- "noImplicitAny": false,
- "skipLibCheck": true,
- "removeComments": true,
- "types": ["webpack-env", "unplugin-vue-define-options"],
- "paths": {
- "@/*": ["src/*"]
- }
- },
- "include": [
- "mock/**/*",
- "src/**/*.ts",
- "**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/**/*.d.ts",
- "types/**/*.ts"
- ],
- "exclude": ["node_modules", "dist", "**/*.js", "**/*.md", "src/**/*.md"]
- }
|