diff --git a/extensions/akismet/js/tsconfig.json b/extensions/akismet/js/tsconfig.json index 4d40354629..10534e8a3e 100644 --- a/extensions/akismet/js/tsconfig.json +++ b/extensions/akismet/js/tsconfig.json @@ -15,6 +15,7 @@ "declarationDir": "./dist-typings", "paths": { "flarum/*": ["../../../framework/core/js/dist-typings/*"], + "@flarum/core/*": ["../../../framework/core/js/dist-typings/*"], "flarum/flags/*": ["../../flags/js/dist-typings/*"] } } diff --git a/extensions/package-manager/js/tsconfig.json b/extensions/package-manager/js/tsconfig.json index 747f61f266..5c0840400e 100755 --- a/extensions/package-manager/js/tsconfig.json +++ b/extensions/package-manager/js/tsconfig.json @@ -10,7 +10,8 @@ // This will output typings to `dist-typings` "declarationDir": "./dist-typings", "paths": { - "flarum/*": ["../../../framework/core/js/dist-typings/*"] + "flarum/*": ["../../../framework/core/js/dist-typings/*"], + "@flarum/core/*": ["../../../framework/core/js/dist-typings/*"], } } } diff --git a/extensions/statistics/js/tsconfig.json b/extensions/statistics/js/tsconfig.json index 519ed73b2d..ccab3a2ec6 100644 --- a/extensions/statistics/js/tsconfig.json +++ b/extensions/statistics/js/tsconfig.json @@ -9,7 +9,8 @@ // This will output typings to `dist-typings` "declarationDir": "./dist-typings", "paths": { - "flarum/*": ["../../../framework/core/js/dist-typings/*"] + "flarum/*": ["../../../framework/core/js/dist-typings/*"], + "@flarum/core/*": ["../../../framework/core/js/dist-typings/*"], } } }