Skip to content

Instantly share code, notes, and snippets.

@angrykoala
Last active May 31, 2019 18:22
Show Gist options
  • Save angrykoala/20ea5bff43c90bc3eea110e3d3eb2a64 to your computer and use it in GitHub Desktop.
Save angrykoala/20ea5bff43c90bc3eea110e3d3eb2a64 to your computer and use it in GitHub Desktop.
tsconfig
{
"compilerOptions": {
"module": "commonjs",
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "dist",
"sourceMap": false,
"strict": true,
"target": "es2015",
"typeRoots": [ "./@types", "./node_modules/@types"],
"lib": ["es2017", "dom"],
"declaration": true,
"noUnusedParameters": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"compileOnSave": true,
"includes": [
"main.ts",
"globals.d.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment