AI-guangzhou-uniapp/tsconfig.json

24 lines
662 B
JSON
Raw Normal View History

2024-08-16 14:04:26 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"sourceMap": true,
"allowJs": true,
"skipLibCheck": true,
"baseUrl": ".",
"types": ["webpack-env", "@dcloudio/types", "miniprogram-api-typings", "mini-types"],
"paths": {
"@/*": ["./src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"exclude": ["node_modules", "unpackage", "dist", "src/**/*.nvue", "doc", "src/i18n"]
}