diff --git a/adev/shared-docs/tsconfig.json b/adev/shared-docs/tsconfig.json index ac9d91c664e..6b978a36e46 100644 --- a/adev/shared-docs/tsconfig.json +++ b/adev/shared-docs/tsconfig.json @@ -12,6 +12,5 @@ "jsxFactory": "h", "jsxFragmentFactory": "Fragment", "types": ["node"], - "paths": {}, } -} \ No newline at end of file +} diff --git a/adev/tsconfig.json b/adev/tsconfig.json index 8454df17a2c..e5768f26ee4 100644 --- a/adev/tsconfig.json +++ b/adev/tsconfig.json @@ -27,7 +27,11 @@ "jsx": "react", "jsxFactory": "h", "jsxFragmentFactory": "Fragment", - "skipLibCheck": true + "skipLibCheck": true, + "paths": { + "@angular/docs": ["./shared-docs"], + "@angular/*": ["../packages/*/index"] + } }, "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false, diff --git a/devtools/tsconfig.json b/devtools/tsconfig.json index 8ce6d646eb5..09964910aa4 100644 --- a/devtools/tsconfig.json +++ b/devtools/tsconfig.json @@ -16,6 +16,7 @@ "target": "es2020", "lib": ["es2020", "dom", "dom.iterable"], "types": ["chrome"], + // TODO: Have an IDE specific tsconfig file "paths": { "@angular/*": ["../packages/*/index"] }