Move executeCommandLine.ts into its own project (#35595)

* Move executeCommandLine.ts into its own project

* Remove incorrect prepend
This commit is contained in:
Wesley Wigham 2019-12-09 16:33:24 -08:00 committed by GitHub
parent f8cacf97e1
commit 6936ac24fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 30 additions and 4 deletions

View File

@ -0,0 +1,14 @@
{
"extends": "../tsconfig-base",
"compilerOptions": {
"outFile": "../../built/local/executeCommandLine.js"
},
"references": [
{ "path": "../compiler" }
],
"files": [
"executeCommandLine.ts"
]
}

View File

@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outFile": "../../built/local/executeCommandLine.release.js",
"removeComments": true,
"preserveConstEnums": false
},
"references": [
{ "path": "../compiler/tsconfig.release.json" }
]
}

View File

@ -16,6 +16,7 @@
"references": [
{ "path": "../shims", "prepend": true },
{ "path": "../compiler", "prepend": true },
{ "path": "../executeCommandLine", "prepend": true },
{ "path": "../services", "prepend": true },
{ "path": "../jsTyping", "prepend": true },
{ "path": "../server", "prepend": true },
@ -49,7 +50,6 @@
"unittests/services/extract/helpers.ts",
"unittests/tsbuild/helpers.ts",
"../tsc/executeCommandLine.ts",
"unittests/tsc/helpers.ts",
"unittests/tscWatch/helpers.ts",
"unittests/tsserver/helpers.ts",

View File

@ -4,10 +4,10 @@
"outFile": "../../built/local/tsc.js"
},
"files": [
"executeCommandLine.ts",
"tsc.ts"
],
"references": [
{ "path": "../compiler", "prepend": true }
{ "path": "../compiler", "prepend": true },
{ "path": "../executeCommandLine", "prepend": true }
]
}

View File

@ -11,6 +11,7 @@
"incremental": true
},
"references": [
{ "path": "../compiler/tsconfig.release.json", "prepend": true }
{ "path": "../compiler/tsconfig.release.json", "prepend": true },
{ "path": "../executeCommandLine/tsconfig.release.json", "prepend": true }
]
}