eslint-plugin-export-scope
exportしたファイルをimportできるパスを制限できる
ESLint
のプラグイン
https://github.com/A-Shleifman/eslint-plugin-export-scope
eslint-plugin-import-access
に似ているが、より細かくスコープを制御できる
あと
Barrel file
を置かなくてもディレクトリ外に公開できる
code:ts
/** @scope .. */
export someFunction = () => {
}
とすると、親ディレクトリとその下にあるディレクトリ以外からimportできなくなる