Skip to content

Commit 47a90f8

Browse files
author
Ives van Hoorne
committed
Changes
1 parent 9b48877 commit 47a90f8

File tree

2 files changed

+5
-14
lines changed

2 files changed

+5
-14
lines changed

packages/app/jsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"module": "commonjs",
44
"target": "ES6",
55
"paths": {
6-
"sandbox/*": "src/sandbox/*",
7-
"app/*": "src/app/*",
8-
"embed/*": "src/embed/*"
6+
"sandbox/*": ["src/sandbox/*"],
7+
"app/*": ["src/app/*"],
8+
"embed/*": ["src/embed/*"]
99
}
1010
},
1111
"files": ["src/**/*.js"],

packages/codesandbox-playground/README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,13 @@ import Preview from 'codesandbox-playground/dist/components/Preview';
7474
const files = {
7575
'/index.js': {
7676
code: `
77-
import preval from 'preval.macro';
78-
79-
console.log(preval);
77+
console.log('hey')
8078
`,
8179
},
82-
'.babelrc': {
83-
// used for babel config
84-
code: `
85-
{}
86-
`,
87-
},
8880
};
8981

9082
const dependencies = {
91-
'babel-macros': 'latest',
92-
'babel-plugin-preval': 'latest',
83+
react: 'latest',
9384
};
9485

9586
export default () => (

0 commit comments

Comments
 (0)