Last active
July 28, 2020 22:02
-
-
Save jasmo2/c06d94ee1e66464ae4ddddaa356e95cb to your computer and use it in GitHub Desktop.
Common Config files
This file contains 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
{ | |
"editorconfig": true, | |
"trailingComma": "es5", | |
"semi": false, | |
"singleQuote": true, | |
"jsxBracketSameLine": false, | |
"arrowParens": "always", | |
"printWidth": 80 | |
} |
This file contains 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
Show hidden characters
{ | |
"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