Skip to content

Instantly share code, notes, and snippets.

@eioo
Last active April 21, 2018 13:53
Show Gist options
  • Save eioo/5aa7c476a1fb62b293a133ad2b1c2115 to your computer and use it in GitHub Desktop.
Save eioo/5aa7c476a1fb62b293a133ad2b1c2115 to your computer and use it in GitHub Desktop.
tsconfig template
{
"compilerOptions": {
"outDir": "./build",
"module": "commonjs",
"target": "es6",
"lib": ["es6"],
"sourceMap": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment