Fix IDE resolution of absolute module paths

This commit is contained in:
Cohee
2025-11-23 16:54:13 +02:00
parent 1b5075a331
commit 9c0588f5d5
+7 -1
View File
@@ -6,7 +6,13 @@
"moduleResolution": "node",
"allowUmdGlobalAccess": true,
"allowSyntheticDefaultImports": true,
"strictBindCallApply": true
"strictBindCallApply": true,
"baseUrl": ".",
"paths": {
"/*": [
"./*"
]
}
},
"exclude": [
"**/node_modules/**",