tools: updated the VS Code config

This commit is contained in:
vsavkin 2015-07-06 17:57:24 -07:00
parent c2efa23e94
commit e987ac4034
2 changed files with 14 additions and 12 deletions

View File

@ -1,12 +1,12 @@
// Place your settings in this file to overwrite default and user settings.
{
"search.excludeFolders": [
".git",
"node_modules",
"bower_components",
"packages",
"build",
"dist",
"tmp"
]
"search.exclude": {
".git" : true,
".idea": true,
"node_modules" : true,
"bower_components" : true,
"packages" : true,
"build" : true,
"dist" : true,
"tmp" : true
}
}

View File

@ -1,6 +1,8 @@
{
"version": "1.5.0",
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"module": "commonjs",
"declaration": false,
@ -9,8 +11,8 @@
"noLib": false,
"outDir": "dist/js/cjs"
},
"filesGlob": [
"./src/**/*.ts",
"fileGlobs": [
"./modules/**/*.ts",
"./tools/**/*.ts",
"!./node_modules/**",
"!./modules_dart/**",