Last active
May 31, 2019 18:22
-
-
Save angrykoala/20ea5bff43c90bc3eea110e3d3eb2a64 to your computer and use it in GitHub Desktop.
tsconfig
This file contains 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": { | |
"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