diff --git a/scripts/gulpfiles/package_tasks.js b/scripts/gulpfiles/package_tasks.js index 84e218298b2..f0cc9d8786a 100644 --- a/scripts/gulpfiles/package_tasks.js +++ b/scripts/gulpfiles/package_tasks.js @@ -389,7 +389,7 @@ function packageDTS() { 'typings/msg/msg.d.ts', ]; return gulp.src(handwrittenSrcs, {base: 'typings'}) - .pipe(gulp.src(`${BUILD_DIR}/${TYPINGS_BUILD_DIR}/**/*.d.ts`)) + .pipe(gulp.src(`${TYPINGS_BUILD_DIR}/**/*.d.ts`)) .pipe(gulp.replace('AnyDuringMigration', 'any')) .pipe(gulp.dest(RELEASE_DIR)); }; diff --git a/typings/core.d.ts b/typings/core.d.ts index 190d9591070..2cd6a07ef46 100644 --- a/typings/core.d.ts +++ b/typings/core.d.ts @@ -9,4 +9,4 @@ * @author samelh@google.com (Sam El-Husseini) */ -export * from './declarations/core/blockly'; +export * from './core/blockly'; diff --git a/typings/index.d.ts b/typings/index.d.ts index 0cbdba41732..ac3c88dde8e 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -9,6 +9,6 @@ * @author samelh@google.com (Sam El-Husseini) */ -export * from './declarations/core/blockly'; +export * from './core/blockly'; export * as libraryBlocks from './blocks'; // Handcrafted file. export const JavaScript: any;