Fix IDE resolution of absolute module paths
| @@ -6,7 +6,13 @@ | ||
| 6 | 6 | "moduleResolution": "node", |
| 7 | 7 | "allowUmdGlobalAccess": true, |
| 8 | 8 | "allowSyntheticDefaultImports": true, |
| 9 | 9 | "strictBindCallApply": true, |
| 10 | + "baseUrl": ".", | |
| 11 | + "paths": { | |
| 12 | + "/*": [ | |
| 13 | + "./*" | |
| 14 | + ] | |
| 15 | + } | |
| 10 | 16 | }, |
| 11 | 17 | "exclude": [ |
| 12 | 18 | "**/node_modules/**", |