This commit is contained in:
parent
11fa3d1558
commit
ad01868a9f
23 changed files with 328 additions and 97 deletions
|
|
@ -16,7 +16,13 @@
|
|||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"jsxImportSource": "vue",
|
||||
"lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable", "WebWorker"],
|
||||
"lib": [
|
||||
"ESNext",
|
||||
"DOM",
|
||||
"DOM.Iterable",
|
||||
"DOM.AsyncIterable",
|
||||
"WebWorker"
|
||||
],
|
||||
"module": "ESNext",
|
||||
"moduleDetection": "force",
|
||||
"moduleResolution": "bundler",
|
||||
|
|
@ -32,8 +38,12 @@
|
|||
"noUncheckedSideEffectImports": false,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"paths": { "@/*": ["./src/*"] },
|
||||
"plugins": [{ "name": "@vue/typescript-plugin" }],
|
||||
"paths": {
|
||||
"@/*": ["./src/*"]
|
||||
},
|
||||
"plugins": [
|
||||
{ "name": "@vue/typescript-plugin" }
|
||||
],
|
||||
"resolveJsonModule": true,
|
||||
"skipDefaultLibCheck": true,
|
||||
"skipLibCheck": true,
|
||||
|
|
@ -43,10 +53,20 @@
|
|||
"strictNullChecks": true,
|
||||
"strictPropertyInitialization": true,
|
||||
"target": "ESNext",
|
||||
"tsBuildInfoFile": ".cache/tsbuildinfo",
|
||||
"useDefineForClassFields": true,
|
||||
"useUnknownInCatchVariables": true,
|
||||
"verbatimModuleSyntax": true
|
||||
},
|
||||
"exclude": ["node_modules", "dist/", ".cache"],
|
||||
"include": ["src/router/typed-routes.d.ts", "src/env.d.ts", "**/*", "**/*.vue"]
|
||||
"exclude": [
|
||||
".cache",
|
||||
"dist/",
|
||||
"node_modules"
|
||||
],
|
||||
"include": [
|
||||
"**/*",
|
||||
"**/*.vue",
|
||||
"src/vite-env.d.ts",
|
||||
"src/router/typed-routes.d.ts"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue