Skip to content

Instantly share code, notes, and snippets.

@jasmo2
Last active July 28, 2020 22:02
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 jasmo2/c06d94ee1e66464ae4ddddaa356e95cb to your computer and use it in GitHub Desktop.
Save jasmo2/c06d94ee1e66464ae4ddddaa356e95cb to your computer and use it in GitHub Desktop.
Common Config files
{
"editorconfig": true,
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"printWidth": 80
}
{
"compilerOptions": {
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"lib": [
"esnext",
"dom"
],
"allowJs": true,
"jsx": "react",
"preserveConstEnums": true,
"strictNullChecks": true,
"target": "esnext",
"outDir": "./dist/",
"moduleResolution": "node",
"module": "commonjs",
"baseUrl": "./",
},
"include": [
"./src/**/*"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment