mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
Move executeCommandLine.ts into its own project (#35595)
* Move executeCommandLine.ts into its own project * Remove incorrect prepend
This commit is contained in:
parent
f8cacf97e1
commit
6936ac24fd
14
src/executeCommandLine/tsconfig.json
Normal file
14
src/executeCommandLine/tsconfig.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"extends": "../tsconfig-base",
|
||||
"compilerOptions": {
|
||||
"outFile": "../../built/local/executeCommandLine.js"
|
||||
},
|
||||
|
||||
"references": [
|
||||
{ "path": "../compiler" }
|
||||
],
|
||||
|
||||
"files": [
|
||||
"executeCommandLine.ts"
|
||||
]
|
||||
}
|
||||
11
src/executeCommandLine/tsconfig.release.json
Normal file
11
src/executeCommandLine/tsconfig.release.json
Normal 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" }
|
||||
]
|
||||
}
|
||||
@ -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",
|
||||
|
||||
@ -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 }
|
||||
]
|
||||
}
|
||||
|
||||
@ -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 }
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user