Skip to content

Instantly share code, notes, and snippets.

@sergeimuller
Created January 15, 2020 13:07
Show Gist options
  • Save sergeimuller/5a0a567556f2bf4004f6d982c3a38111 to your computer and use it in GitHub Desktop.
Save sergeimuller/5a0a567556f2bf4004f6d982c3a38111 to your computer and use it in GitHub Desktop.
CRA jsconfig.json for module resolution
{
"compilerOptions": {
"baseUrl": "./src",
"allowSyntheticDefaultImports": false,
"module": "commonJS",
"target": "es6",
"paths": {
"*/*": ["./src/*"]
}
},
"include": ["./src/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment