Skip to content

Commit 91f6fe8

Browse files
committed
Merge branch 'master' of github.com:codesandbox/codesandbox-client
2 parents 106a6b5 + 367e6f6 commit 91f6fe8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/app/config/webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const SANDBOX_ONLY = !!process.env.SANDBOX_ONLY;
1818
const __DEV__ = NODE_ENV === 'development'; // eslint-disable-line no-underscore-dangle
1919
const __PROD__ = NODE_ENV === 'production'; // eslint-disable-line no-underscore-dangle
2020
// const __TEST__ = NODE_ENV === 'test'; // eslint-disable-line no-underscore-dangle
21-
const babelConfig = __DEV__ ? babelDev : babelProd;
21+
const babelConfig = __DEV__ && !SANDBOX_ONLY ? babelDev : babelProd;
2222

2323
const publicPath = SANDBOX_ONLY || __DEV__ ? '/' : getHost.default() + '/';
2424

packages/app/src/app/vscode/initializers.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export function initializeSettings() {
3535
'editor.tabSize': 2,
3636
'editor.minimap.enabled': false,
3737
'workbench.editor.openSideBySideDirection': 'down',
38+
'svelte.plugin.typescript.diagnostics.enable': false,
3839
},
3940
null,
4041
2

0 commit comments

Comments
 (0)