You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noImplicitThis": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"preserveValueImports": true,
|
|
"importsNotUsedAsValues": "error",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"rootDir": ".",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["vite/client", "@dcloudio/types", ".vscode"],
|
|
"typeRoots": ["./node_modules/@types/", "./types"],
|
|
"noImplicitAny": false,
|
|
"paths": {
|
|
"uni": ["types/uni.d.ts"],
|
|
"@/*": ["./*"],
|
|
"/#/*": ["types/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.d.ts",
|
|
"./**/*.tsx",
|
|
"./**/*.vue",
|
|
"./**/*.nvue",
|
|
"types/**/*.d.ts",
|
|
"types/**/*.ts",
|
|
"components.d.ts",
|
|
"vite.config.ts",
|
|
"./*"
|
|
],
|
|
"exclude": ["node_modules", "public", "static", "**/*.js", "uni_modules", "unpackage", ".hbuilderx"],
|
|
"extends": "@vue/tsconfig/tsconfig.json"
|
|
}
|
|
|