gameSeriveUniapp/tsconfig.json
2026-01-12 16:48:28 +08:00

46 lines
976 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": {
"@/*": ["./*"],
"@/components/*": ["./components/*"],
"@/pages/*": ["./pages/*"],
"@/static/*": ["./static/*"],
"@/store/*": ["./store/*"],
"@/utils/*": ["./utils/*"],
"@/types/*": ["./types/*"],
"@/mock/*": ["./mock/*"]
},
"lib": ["esnext", "dom"],
"types": [
"@dcloudio/types",
"@types/wechat-miniprogram"
]
},
"include": [
"**/*.ts",
"**/*.d.ts",
"**/*.tsx",
"**/*.vue"
],
"exclude": [
"node_modules",
"unpackage",
"dist"
],
"vueCompilerOptions": {
"target": 3
}
}