thefrontside / javascript

Frontside JavaScript tooling
9 stars 5 forks source link

Unable to extend eslint-config from sub-dependency within frontside/typescript #10

Open minkimcello opened 4 years ago

minkimcello commented 4 years ago

Expected Behavior

my-project/
  node_modules/
    @frontside/typescript
      node_modules/
        @frontside/eslint-config
  .eslintrc.json
    extends @frontside/eslint-config // currently not working

Current Solution

my-project/
  node_modules/
    @frontside/typescript
    @frontside/eslint-config
  .eslintrc.json
    extends @frontside/eslint-config // works

Related