tools: updated the VS Code config
This commit is contained in:
parent
c2efa23e94
commit
e987ac4034
|
@ -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
|
||||
}
|
||||
}
|
|
@ -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/**",
|
||||
|
|
Loading…
Reference in New Issue