2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 07:57:21 +08:00
Files
panel/web/tsconfig.node.json
2024-11-26 02:18:45 +08:00

23 lines
325 B
JSON

{
"extends": [
"@tsconfig/node20/tsconfig.json"
],
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"paths": {
"~/*": [
"./*"
],
"@/*": [
"./src/*"
]
},
"types": [
"node"
],
"noEmit": true
}
}