Files
xian_vue_new/tsconfig.node.json
T

19 lines
413 B
JSON
Raw Normal View History

2026-04-07 20:01:06 +08:00
{
2026-04-07 21:01:52 +08:00
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*",
"eslint.config.*"
],
2026-04-07 20:01:06 +08:00
"compilerOptions": {
"noEmit": true,
2026-04-07 21:01:52 +08:00
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
2026-04-07 20:01:06 +08:00
2026-04-07 21:01:52 +08:00
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}