Created
April 28, 2019 18:37
-
-
Save aleph-naught2tog/04c34c04d8356fd3b0d4cd25cf4c4943 to your computer and use it in GitHub Desktop.
tsconfig without explanatory comments (version 3.4.4)
This file contains hidden or 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": { | |
/* 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