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.
Water_Machine_Management_Sy.../target/classes/web/tsconfig.app.json

16 lines
501 B

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"lib": ["ES2015", "DOM"], // 关键:添加 ES2015 支持 Promise
"target": "ES2015", // 目标输出为 ES2015 及以上
"module": "ESNext", // 配合异步模块解析
"moduleResolution": "NodeNext"
}
}
}