0

ディレクトリの内側からインポートされたすべてのものの相対インポートパスと、ディレクトリの外側からインポートされたすべてのものの絶対パスを持つようにするeslintルールが必要です。

例: これは私のファイル構造です


/Dashboard
    /components
        /Component1.tsx
/Home
    /components
        /Component2.tsx
        /Component3.tsx
    /utils
        /util1.ts
style.ts

ホームディレクトリ内で相対インポートを行い、ホームディレクトリの外部からインポートされたすべてのものを絶対インポートしたいと考えています。

私のComponent2.tsxのインポートは次のようになります

import Component3 from './Component3'
import util1 from './../util1'
import FlexBox from './../../styled'
import Component1 from 'Dashboard/components/component1' // this should be absolute


4

1 に答える 1