私は現在create-react-app
をbootstrap私のプロジェクトの1つに使用しています。 create-react-appによって:
"baseUrl": "./src",
"paths": {
"interfaces/*": [
"common/interfaces/*",
],
"components/*": [
"common/components/*",
],
},
ただし、yarn start
を実行するたびに、基本的にreact-scripts start
が実行され、変更が削除され、デフォルトの構成が再度生成されます。
Create-react-appにカスタム構成を使用するように指示するにはどうすればよいですか?
this issue からのアドバイスを使用してこれを行うことができました。
スクリプトが好む構成オプションを別のファイル(たとえば、paths.json)で削除し、extendsディレクティブを介してtsconfig.jsonから参照するように設定します。
paths.json:
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"interfaces/*": [ "common/interfaces/*"],
"components/*": [ "common/components/*"],
}
}
}
tsconfig.json
{
"extends": "./paths.json"
...rest of tsconfig.json
}
Create Reactアプリは現在baseUrl
をサポートしていません。ただし、回避策があります... webpackとIDEの両方に対してbaseUrl
をセットアップするには、以下を実行する必要があります。
.env
ファイルを作成します。NODE_PATH=./
tsconfig.paths.json
ファイルを作成します。{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"src/*": ["*"]
}
}
}
tsconfig.json
に次の行を追加します{
"extends": "./tsconfig.paths.json",
...
}
できません。いつできるのかわかりません。 baseUrlとパスを使用して、相対的なインポートを回避しようとしましたが、ご覧のとおり、特定の値を意図的に削除しています。 「(まだ)」は勇気づけられますが、(sigh)彼らが公式にいつサポートするかを知っています。 このgithubにサブスクライブする これが変更された場合に通知することをお勧めします。
The following changes are being made to your tsconfig.json file:
- compilerOptions.baseUrl must not be set (absolute imports are not supported (yet))
- compilerOptions.paths must not be set (aliased imports are not supported)