Last active
August 26, 2018 15:12
-
-
Save yura415/c65c777c9c62f69a123f5b0333e1d92a to your computer and use it in GitHub Desktop.
tsconfig настроенный для работы с js проектом на vscode
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": "es2015", | |
"moduleResolution": "node", | |
"target": "es2015", | |
"noImplicitAny": false, | |
"removeComments": true, | |
"preserveConstEnums": true, | |
"sourceMap": true, | |
"baseUrl": ".", | |
"paths": { | |
"*": ["*", "src/*"], | |
"test/*": ["test/*"] | |
}, | |
"lib": ["es2017"], | |
"checkJs": true, | |
"allowJs": true, | |
"allowSyntheticDefaultImports": true | |
}, | |
"include": ["src/**/*", "test/**/*", "type-definitions/**/*"], | |
"exclude": ["dist"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment