20 lines
556 B
JSON
20 lines
556 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
"types": ["@dcloudio/types","@/uni_modules/uview-ui/components"],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./src/types"
|
|
]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue","src/types/**/*.d.ts", "auto-imports.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|