Fix IDE resolution of absolute module paths

9c0588f5d55be6df45c2bf41ec0d5dc76ba5c859

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +7 -1Ignore whitespace
public/jsconfig.json+7 -1
@@ -6,7 +6,13 @@
6 "moduleResolution": "node",6 "moduleResolution": "node",
7 "allowUmdGlobalAccess": true,7 "allowUmdGlobalAccess": true,
8 "allowSyntheticDefaultImports": true,8 "allowSyntheticDefaultImports": true,
9 "strictBindCallApply": true9 "strictBindCallApply": true,
10 "baseUrl": ".",
11 "paths": {
12 "/*": [
13 "./*"
14 ]
15 }
10 },16 },
11 "exclude": [17 "exclude": [
12 "**/node_modules/**",18 "**/node_modules/**",