Skip to content

Commit 6936ac2

Browse files
authored
Move executeCommandLine.ts into its own project (microsoft#35595)
* Move executeCommandLine.ts into its own project * Remove incorrect prepend
1 parent f8cacf9 commit 6936ac2

File tree

6 files changed

+30
-4
lines changed

6 files changed

+30
-4
lines changed

src/executeCommandLine/tsconfig.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "../tsconfig-base",
3+
"compilerOptions": {
4+
"outFile": "../../built/local/executeCommandLine.js"
5+
},
6+
7+
"references": [
8+
{ "path": "../compiler" }
9+
],
10+
11+
"files": [
12+
"executeCommandLine.ts"
13+
]
14+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"outFile": "../../built/local/executeCommandLine.release.js",
5+
"removeComments": true,
6+
"preserveConstEnums": false
7+
},
8+
"references": [
9+
{ "path": "../compiler/tsconfig.release.json" }
10+
]
11+
}

src/testRunner/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"references": [
1717
{ "path": "../shims", "prepend": true },
1818
{ "path": "../compiler", "prepend": true },
19+
{ "path": "../executeCommandLine", "prepend": true },
1920
{ "path": "../services", "prepend": true },
2021
{ "path": "../jsTyping", "prepend": true },
2122
{ "path": "../server", "prepend": true },
@@ -49,7 +50,6 @@
4950

5051
"unittests/services/extract/helpers.ts",
5152
"unittests/tsbuild/helpers.ts",
52-
"../tsc/executeCommandLine.ts",
5353
"unittests/tsc/helpers.ts",
5454
"unittests/tscWatch/helpers.ts",
5555
"unittests/tsserver/helpers.ts",

src/tsc/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"outFile": "../../built/local/tsc.js"
55
},
66
"files": [
7-
"executeCommandLine.ts",
87
"tsc.ts"
98
],
109
"references": [
11-
{ "path": "../compiler", "prepend": true }
10+
{ "path": "../compiler", "prepend": true },
11+
{ "path": "../executeCommandLine", "prepend": true }
1212
]
1313
}

src/tsc/tsconfig.release.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"incremental": true
1212
},
1313
"references": [
14-
{ "path": "../compiler/tsconfig.release.json", "prepend": true }
14+
{ "path": "../compiler/tsconfig.release.json", "prepend": true },
15+
{ "path": "../executeCommandLine/tsconfig.release.json", "prepend": true }
1516
]
1617
}

0 commit comments

Comments
 (0)