uniapp-app/tsconfig.json
2025-12-03 08:40:39 +08:00

80 lines
911 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*", "./*"]
},
"lib": ["esnext", "dom", "dom.iterable"],
"types": [
"@dcloudio/types",
"@dcloudio/uni-app",
"@dcloudio/uni-cli-shared",
"@dcloudio/uni-components",
"@dcloudio/uni-h5",
"@dcloudio/uni-mp-weixin",
"@dcloudio/uni-app-plus"
]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.vue",
"**/*.js",
"**/*.jsx"
],
"exclude": [
"node_modules",
"dist",
"unpackage"
]
}