Created
November 24, 2019 01:59
-
-
Save RickJP/081823bbaed4686d1355e25564a0d72a to your computer and use it in GitHub Desktop.
VS CODE - JS ES6 Config Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VISUAL STUDIO CODE - SETTINGS JSCONFIG | |
{ | |
"compilerOptions": { | |
"outDir": "build/dist", | |
"module": "commonjs", | |
"target": "es5", | |
"lib": ["es6", "dom"], | |
"sourceMap": true, | |
"jsx": "react", | |
"moduleResolution": "node", | |
"rootDir": "src", | |
"noImplicitReturns": true, | |
"noImplicitThis": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true | |
}, | |
"exclude": [ | |
"node_modules", | |
"build", | |
"scripts", | |
"acceptance-tests", | |
"webpack", | |
"jest", | |
"src/setupTests.ts" | |
], | |
"types": [ | |
"typePatches" | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment