123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "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 ,
- "suppressImplicitAnyIndexErrors": true
- },
- "include": ["src/**/*.ts", "src/**/*.vue", "src/**/*.tsx", "src/**/*.d.ts", "vite.config.ts"],
- "exclude": ["node_modules", "dist"]
- }
|