Skip to content

Instantly share code, notes, and snippets.

@sentientmachin3
Created March 5, 2023 14:53
Show Gist options
  • Select an option

  • Save sentientmachin3/2687fccb297b52da6d51b2bf5ea2eb3e to your computer and use it in GitHub Desktop.

Select an option

Save sentientmachin3/2687fccb297b52da6d51b2bf5ea2eb3e to your computer and use it in GitHub Desktop.
Sample tsconfig.json
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "es2020",
"module": "commonjs",
"allowJs": false,
"declaration": true,
"declarationMap": false,
"sourceMap": true,
"removeComments": true,
"noEmit": false,
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": false,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
"useUnknownInCatchVariables": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"outDir": "./dist"
},
"include": ["./src"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment