no relative imports... well.. whatever
This commit is contained in:
parent
5c6be0f49d
commit
15b2b9543b
1 changed files with 16 additions and 16 deletions
|
@ -2,21 +2,21 @@ const path = require('path')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
rules: {
|
rules: {
|
||||||
'no-relative-imports': [
|
//'no-relative-imports': [
|
||||||
'warn',
|
//'warn',
|
||||||
{
|
//{
|
||||||
aliases: [
|
//aliases: [
|
||||||
{name: '@theatre/core', path: path.resolve(__dirname, './core/src')},
|
//{name: '@theatre/core', path: path.resolve(__dirname, './core/src')},
|
||||||
{
|
//{
|
||||||
name: '@theatre/shared',
|
//name: '@theatre/shared',
|
||||||
path: path.resolve(__dirname, './shared/src'),
|
//path: path.resolve(__dirname, './shared/src'),
|
||||||
},
|
//},
|
||||||
{
|
//{
|
||||||
name: '@theatre/studio',
|
//name: '@theatre/studio',
|
||||||
path: path.resolve(__dirname, './studio/src'),
|
//path: path.resolve(__dirname, './studio/src'),
|
||||||
},
|
//},
|
||||||
],
|
//],
|
||||||
},
|
//},
|
||||||
],
|
//],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue