Extend tsconfig.release.json from the sibling tsconfig.json to ensure files aren't forgotten.

This commit is contained in:
Daniel Rosenwasser 2019-10-18 16:12:26 -07:00
parent cdf1ab2dec
commit fbc070f328

View file

@ -1,5 +1,5 @@
{ {
"extends": "../tsconfig-base", "extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outFile": "../../built/local/tsc.release.js", "outFile": "../../built/local/tsc.release.js",
"stripInternal": true, "stripInternal": true,
@ -10,9 +10,6 @@
"composite": false, "composite": false,
"incremental": true "incremental": true
}, },
"files": [
"tsc.ts"
],
"references": [ "references": [
{ "path": "../compiler/tsconfig.release.json", "prepend": true } { "path": "../compiler/tsconfig.release.json", "prepend": true }
] ]