Skip to content

Instantly share code, notes, and snippets.

@yura415
Last active August 26, 2018 15:12
Show Gist options
  • Save yura415/c65c777c9c62f69a123f5b0333e1d92a to your computer and use it in GitHub Desktop.
Save yura415/c65c777c9c62f69a123f5b0333e1d92a to your computer and use it in GitHub Desktop.
tsconfig настроенный для работы с js проектом на vscode
{
"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