UnisKB/ui/tsconfig.node.json

19 lines
390 B
JSON
Raw Normal View History

2023-09-15 09:40:35 +00:00
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "node",
2024-04-15 08:52:58 +00:00
"skipLibCheck": true, // 跳过node依赖包语法检查
"types": [
"node"
]
2023-09-15 09:40:35 +00:00
}
2024-04-15 08:52:58 +00:00
}