Skip to content

Instantly share code, notes, and snippets.

View joebobmiles's full-sized avatar

Joseph R Miles joebobmiles

View GitHub Profile
@joebobmiles
joebobmiles / tslint.json
Created November 3, 2019 02:07
Personal TSLint config. This gets rid of TSLint's hollering about minutiae that I personally think makes my code more readable.
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": {
"options": [120]
},
"new-parens": true,
"no-arg": true,
"no-bitwise": false,
"no-conditional-assignment": true,
@joebobmiles
joebobmiles / tsconfig.json
Created November 3, 2019 02:03
Basic project configs for a TypeScript and WebPack project. (Requires TypeScript, WebPack, and WebPack CLI to be installed!)
{
"compilerOptions": {
"outDir": "./dist/",
"rootDir": "./src/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5"
}
}