Files
svgeditor2.0/tsconfig.node.json

20 lines
358 B
JSON
Raw Normal View History

2025-09-25 11:34:55 +08:00
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
},
"paths":{
"@/*":["src/*"]
}
}