UnisKB/ui/tsconfig.vitest.json

12 lines
249 B
JSON
Raw Normal View History

2023-09-15 09:40:35 +00:00
{
"extends": "./tsconfig.app.json",
"exclude": [],
"compilerOptions": {
"composite": true,
"target": "esnext", // 使用ES最新语法
"module": "esnext", // 使用ES模块语法
2023-09-15 09:40:35 +00:00
"lib": [],
"types": ["node", "jsdom"]
}
}