Skip to content

Instantly share code, notes, and snippets.

@aleph-naught2tog
Created April 28, 2019 18:37
Show Gist options
  • Save aleph-naught2tog/04c34c04d8356fd3b0d4cd25cf4c4943 to your computer and use it in GitHub Desktop.
Save aleph-naught2tog/04c34c04d8356fd3b0d4cd25cf4c4943 to your computer and use it in GitHub Desktop.
tsconfig without explanatory comments (version 3.4.4)
{
"compilerOptions": {
/* Basic Options */
"target": "es5",
"module": "commonjs",
// "lib": [],
// "allowJs": true,
// "checkJs": true,
// "jsx": "preserve",
// "declaration": true,
// "declarationMap": true,
// "sourceMap": true,
// "outFile": "./",
// "outDir": "./",
// "rootDir": "./",
// "composite": true,
// "incremental": true,
// "tsBuildInfoFile": "./",
// "removeComments": true,
// "noEmit": true,
// "importHelpers": true,
// "downlevelIteration": true,
// "isolatedModules": true,
/* Strict Type-Checking Options */
"strict": true,
// "noImplicitAny": true,
// "strictNullChecks": true,
// "strictFunctionTypes": true,
// "strictBindCallApply": true,
// "strictPropertyInitialization": true,
// "noImplicitThis": true,
// "alwaysStrict": true,
/* Additional Checks */
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noImplicitReturns": true,
// "noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
// "moduleResolution": "node",
// "baseUrl": "./",
// "paths": {},
// "rootDirs": [],
// "typeRoots": [],
// "types": [],
// "allowSyntheticDefaultImports": true,
"esModuleInterop": true
// "preserveSymlinks": true,
/* Source Map Options */
// "sourceRoot": "",
// "mapRoot": "",
// "inlineSourceMap": true,
// "inlineSources": true,
/* Experimental Options */
// "experimentalDecorators": true,
// "emitDecoratorMetadata": true,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment