18 lines
238 B
JavaScript
18 lines
238 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
extends: [
|
||
|
'@scode'
|
||
|
],
|
||
|
globals: {
|
||
|
Atomics: 'readonly',
|
||
|
SharedArrayBuffer: 'readonly'
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018
|
||
|
}
|
||
|
}
|