Skip to content

Instantly share code, notes, and snippets.

@RickJP
Created November 24, 2019 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RickJP/081823bbaed4686d1355e25564a0d72a to your computer and use it in GitHub Desktop.
Save RickJP/081823bbaed4686d1355e25564a0d72a to your computer and use it in GitHub Desktop.
VS CODE - JS ES6 Config Settings
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