Skip to content

Instantly share code, notes, and snippets.

@SleeplessByte
Created April 24, 2017 21:39
Show Gist options
  • Save SleeplessByte/42cb11f8135aa35000e35d2cd3f5e8f3 to your computer and use it in GitHub Desktop.
Save SleeplessByte/42cb11f8135aa35000e35d2cd3f5e8f3 to your computer and use it in GitHub Desktop.
Default tsconfig.json
{
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": false,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"baseUrl": "./src",
"declaration": false,
"declarationDir": "./types",
"diagnostics": false,
"disableSizeLimit": false,
"emitBOM": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"inlineSourceMap": false,
"inlineSources": false,
"isolatedModules": false,
"jsx": "react",
"jsxFactory": "React.createElement",
"listEmittedFiles": false,
"listFiles": false,
"locale": "en-us",
"module": "es6",
"moduleResolution": "node",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitUseStrict": false,
"noLib": false,
"noResolve": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"pretty": true,
"reactNamespace": "React",
"removeComments": true,
"skipDefaultLibCheck": false,
"skipLibCheck": false,
"sourceMap": true,
"strictNullChecks": true,
"stripInternal": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"target": "es6"
},
"awesomeTypescriptLoaderOptions": {
"silent": true,
"compiler": "typescript",
"useTranspileModule": true,
"instance": "at-loader",
"transpileOnly": true,
"useBabel": true,
"useCache": true,
"usePrecompiledFiles": false,
"cacheDirectory": ".awcache"
},
"filesGlob": [
"**/*.ts",
"**/*.tsx",
"!typings/**/*.ts",
"typings/index.d.ts",
"!node_modules/**"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment