1234567891011121314151617181920212223242526272829303132 |
- {
- "extends": "@vue/tsconfig/tsconfig.web.json",
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
- "compilerOptions": {
- "importsNotUsedAsValues": "remove",
- "baseUrl": "./",
- "paths": {
- "@/*": ["./src/*"],
- "@packages/*": ["./packages/*"]
- },
- "strict": true,
- "strictBindCallApply": true,
- "jsx": "preserve",
- "sourceMap": false,
- "resolveJsonModule": true,
- "isolatedModules": false,
- "esModuleInterop": true,
- "noEmit": true,
- "lib": [
- "ESNext",
- "dom",
- "es2015.promise"
- ],
- "allowJs": false,
- "skipLibCheck": true
- },
- "references": [
- {
- "path": "./tsconfig.config.json"
- }
- ]
- }
|