1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "compilerOptions": {
-
-
-
- "target": "esnext" ,
- "module": "esnext" ,
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"] ,
-
-
- "jsx": "preserve" ,
-
-
-
-
-
-
-
-
-
-
-
-
- "isolatedModules": true ,
-
- "strict": true ,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- "moduleResolution": "node" ,
- "baseUrl": "." ,
- "paths": {
- "/@/*": ["src/*"]
- } ,
-
-
- "types": ["vite/client"] ,
- "allowSyntheticDefaultImports": true ,
- "esModuleInterop": true ,
-
-
-
-
-
-
-
-
- "experimentalDecorators": true ,
-
-
- "skipLibCheck": true ,
- "forceConsistentCasingInFileNames": true
- },
- "include": ["src/**/*.ts", "src/**/*.vue", "src/**/*.tsx", "src/**/*.d.ts", "vite.config.ts"],
- "exclude": ["node_modules", "dist"]
- }
|