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