Skip to content

Commit

Permalink
Merge pull request #13535 from Microsoft/empty_types
Browse files Browse the repository at this point in the history
Move `"types": []` to tsconfig-base
  • Loading branch information
Andy committed Jan 17, 2017
2 parents 7a45149 + 9fbadfd commit d80d8b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/compiler/tsconfig.json
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"removeComments": true,
"outFile": "../../built/local/tsc.js",
"declaration": true,
"types": [ ]
"declaration": true
},
"files": [
"core.ts",
Expand Down
3 changes: 1 addition & 2 deletions src/services/tsconfig.json
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"removeComments": false,
"outFile": "../../built/local/typescriptServices.js",
"declaration": true,
"types": []
"declaration": true
},
"files": [
"../compiler/core.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/tsconfig-base.json
Expand Up @@ -9,6 +9,7 @@
"preserveConstEnums": true,
"stripInternal": true,
"sourceMap": true,
"target": "es5"
"target": "es5",
"types": []
}
}

0 comments on commit d80d8b7

Please sign in to comment.