Skip to content

Instantly share code, notes, and snippets.

@amikitevich
Created May 6, 2020 21:53
Show Gist options
  • Save amikitevich/8ccac23ae2764fd1ff28acfcaa5fed13 to your computer and use it in GitHub Desktop.
Save amikitevich/8ccac23ae2764fd1ff28acfcaa5fed13 to your computer and use it in GitHub Desktop.
simple jsconfig for react project written in js
{
"compilerOptions": {
"jsx": "react",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es2015",
"module": "esnext",
"skipLibCheck": true,
"baseUrl": ".",
"checkJs": true,
"resolveJsonModule": true,
"lib": ["es2017", "dom"]
},
"typeAcquisition": {
"include": [
"jest"
]
},
"exclude": ["**/node_modules", "**/.*/"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment