Skip to content

Instantly share code, notes, and snippets.

@priezz
Created July 19, 2018 09:15
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 priezz/7a057a1d644704018cee0663af42174f to your computer and use it in GitHub Desktop.
Save priezz/7a057a1d644704018cee0663af42174f to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"allowJs": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": ".",
"charset": "utf-8",
"checkJs": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"module": "esnext",
"moduleResolution": "node",
"newLine": "LF",
"noEmit": true,
"noEmitHelpers": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "build",
"preserveConstEnums": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"strict": true,
// "strictFunctionTypes": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": false,
// Specific for WEB
"downlevelIteration": true,
"jsx": "react",
"lib": [
"dom", // WEB
"es5",
"es6",
"es2015",
"es2016",
"es7",
"es2017",
"esnext"
],
"paths": {
"*": ["src/*"],
"~*": ["src/*"]
},
// "reactNamespace": "Styler",
// "rootDir": "src",
"target": "es5"
},
"parcelTsPluginOptions": {
// If true type-checking is disabled
"transpileOnly": true
},
"include": [
"src/**/*"
],
"exclude": [
"build",
"node_modules"
],
"types": [
"typePatches"
],
"compileOnSave": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment