* Expose `@babel/eslint-parser/experimental-worker` * Fix `@babel/runtime` build on Windows
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "@babel/eslint-parser/experimental-worker",
|
|
parserOptions: {
|
|
babelOptions: {
|
|
configFile: __dirname + "/babel.config.mjs",
|
|
sourceType: "module",
|
|
},
|
|
},
|
|
rules: {
|
|
"template-curly-spacing": "error",
|
|
},
|
|
};
|