41 lines
927 B
JSON
41 lines
927 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"jsxImportSource": "vue",
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"strict": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"target": "ESNext",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
},
|
||
|
|
"types": [
|
||
|
|
"vite/client",
|
||
|
|
"@dcloudio/types",
|
||
|
|
"@mini-types/alipay",
|
||
|
|
"miniprogram-api-typings",
|
||
|
|
"wot-design-uni/global.d.ts",
|
||
|
|
"@uni-helper/uni-types"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.d.ts",
|
||
|
|
"src/**/*.ts",
|
||
|
|
"src/**/*.tsx",
|
||
|
|
"src/**/*.jsx",
|
||
|
|
"src/**/*.vue"
|
||
|
|
],
|
||
|
|
"vueCompilerOptions": {
|
||
|
|
"plugins": ["@uni-helper/uni-types/volar-plugin"]
|
||
|
|
}
|
||
|
|
}
|