Skip to content

Instantly share code, notes, and snippets.

@EnetoJara
Created April 5, 2020 11:43
Show Gist options
  • Save EnetoJara/16cd25b0f7f957506717aa5061ff48d1 to your computer and use it in GitHub Desktop.
Save EnetoJara/16cd25b0f7f957506717aa5061ff48d1 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"incremental": true,
"target": "es2019",
"module": "esnext",
"lib": [
"DOM",
"ES2017",
"ES2019"
],
"jsx": "react",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"tsBuildInfoFile": "./tsBuildInfoFile.json",
"importHelpers": true,
"downlevelIteration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": "./node_modules",
"allowSyntheticDefaultImports": false,
"esModuleInterop": false,
"allowUmdGlobalAccess": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"exclude": [
"./node_modules/",
"./public/",
"./.git"
],
"include": [
"src"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment