packages/cli: fix for bundler looking for tsconfig in the wrong place

This commit is contained in:
Patrik Oldsberg
2020-05-18 00:05:32 +02:00
parent d1d7c564e7
commit 738704f1d1
+1 -1
View File
@@ -48,7 +48,7 @@ export function resolveBundlingPaths(options: BundlingPathsOptions) {
targetSrc: paths.resolveTarget('src'),
targetDev: paths.resolveTarget('dev'),
targetEntry: resolveTargetModule(entry),
targetTsConfig: paths.resolveTarget('tsconfig.json'),
targetTsConfig: paths.resolveTargetRoot('tsconfig.json'),
targetNodeModules: paths.resolveTarget('node_modules'),
targetPackageJson: paths.resolveTarget('package.json'),
};