feat: split vendor

This commit is contained in:
2024-06-25 10:40:53 +08:00
parent d8f109cdb4
commit d22d717849
7 changed files with 90 additions and 14 deletions

View File

@@ -2,7 +2,11 @@
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
@@ -16,9 +20,17 @@
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@test-utils": ["./test-utils"],
"@/*": ["./src/*"]
"@test-utils": [
"./test-utils"
],
"@/*": [
"./src/*"
]
}
},
"references": [{ "path": "./tsconfig.node.json" }]
}
"references": [
{
"path": "./tsconfig.node.json"
}
]
}