Last active
May 20, 2020 19:25
-
-
Save kenotron/0750ad8391a3ada062bc4c7c3f6e3b44 to your computer and use it in GitHub Desktop.
tsconfig.json
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": { | |
"target": "es2017", | |
"lib": ["es2017"], | |
"rootDir": "src", | |
"outDir": "lib", | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"esModuleInterop": true, | |
"allowJs": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"declaration": true | |
}, | |
"include": ["src"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment