theatre/packages/r3f/src/.eslintrc.js
2021-09-06 10:19:10 +02:00

11 lines
288 B
JavaScript

module.exports = {
rules: {
'no-restricted-syntax': [
'error',
{
selector: `ImportDeclaration[source.value=/@theatre\\u002F(studio|core)\\u002F/]`,
message: `Importing Theatre's submodules would not work in the production build.`,
},
],
},
}