mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 07:22:33 -05:00
11 lines
145 B
JavaScript
11 lines
145 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: 'scratch',
|
||
|
env: {
|
||
|
browser: true
|
||
|
},
|
||
|
globals: {
|
||
|
Promise: true
|
||
|
}
|
||
|
};
|