I created my React app with create-react-app app_name --typescript. Since Typescript doesn't support NODE_PATH. I'm trying to use baseUrl in tsconfig.json.
However, every time running yarn start after putting "baseUrl": "src" in "compilerOptions", the baseUrl gets gone. I feel like yarn start resets tsconfig.json.
How can I stop it to reset the file?
**tsconfig.json**
{
"compilerOptions": {
"target": "es6",
"allowJs": true,
"skipLibCheck": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve"
},
"include": ["src"]
}