Skip to content

Commit 74642ce

Browse files
authored
Merge pull request #5699 from Tyriar/tsgo
Migrate to tsgo
2 parents 2f66b5f + eccbc60 commit 74642ce

File tree

45 files changed

+234
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+234
-85
lines changed

addons/addon-attach/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"xterm.js"
1717
],
1818
"scripts": {
19-
"build": "../../node_modules/.bin/tsc -p .",
19+
"build": "../../node_modules/.bin/tsgo -p .",
2020
"prepackage": "npm run build",
2121
"package": "../../node_modules/.bin/webpack",
2222
"prepublishOnly": "npm run package",

addons/addon-attach/test/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
"outDir": "../out-test",
1010
"sourceMap": true,
1111
"removeComments": true,
12-
"baseUrl": ".",
1312
"paths": {
1413
"common/*": [
1514
"../../../src/common/*"
1615
],
1716
"browser/*": [
1817
"../../../src/browser/*"
18+
],
19+
"*": [
20+
"./*"
1921
]
2022
},
2123
"strict": true,

addons/addon-clipboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"xterm.js"
1717
],
1818
"scripts": {
19-
"build": "../../node_modules/.bin/tsc -p .",
19+
"build": "../../node_modules/.bin/tsgo -p .",
2020
"prepackage": "npm run build",
2121
"package": "../../node_modules/.bin/webpack",
2222
"prepublishOnly": "npm run package",

addons/addon-clipboard/test/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
"outDir": "../out-test",
1010
"sourceMap": true,
1111
"removeComments": true,
12-
"baseUrl": ".",
1312
"paths": {
1413
"common/*": [
1514
"../../../src/common/*"
1615
],
1716
"browser/*": [
1817
"../../../src/browser/*"
18+
],
19+
"*": [
20+
"./*"
1921
]
2022
},
2123
"strict": true,

addons/addon-fit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"xterm.js"
1717
],
1818
"scripts": {
19-
"build": "../../node_modules/.bin/tsc -p .",
19+
"build": "../../node_modules/.bin/tsgo -p .",
2020
"prepackage": "npm run build",
2121
"package": "../../node_modules/.bin/webpack",
2222
"prepublishOnly": "npm run package",

addons/addon-fit/test/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
"outDir": "../out-test",
1010
"sourceMap": true,
1111
"removeComments": true,
12-
"baseUrl": ".",
1312
"paths": {
1413
"common/*": [
1514
"../../../src/common/*"
1615
],
1716
"browser/*": [
1817
"../../../src/browser/*"
18+
],
19+
"*": [
20+
"./*"
1921
]
2022
},
2123
"strict": true,

addons/addon-image/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"xterm.js"
1919
],
2020
"scripts": {
21-
"prepackage": "../../node_modules/.bin/tsc -p .",
21+
"prepackage": "../../node_modules/.bin/tsgo -p .",
2222
"package": "../../node_modules/.bin/webpack",
2323
"prepublishOnly": "npm run package",
2424
"start": "node ../../demo/start"

addons/addon-image/src/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
"types": [
1212
"../../../node_modules/@types/mocha"
1313
],
14-
"baseUrl": ".",
1514
"paths": {
1615
"browser/*": [ "../../../src/browser/*" ],
1716
"common/*": [ "../../../src/common/*" ],
18-
"@xterm/addon-image": [ "../typings/addon-image.d.ts" ]
17+
"@xterm/addon-image": [ "../typings/addon-image.d.ts" ],
18+
"*": [ "./*" ]
1919
}
2020
},
2121
"include": [

addons/addon-image/test/tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
"outDir": "../out-test",
1010
"sourceMap": true,
1111
"removeComments": true,
12-
"baseUrl": ".",
1312
"paths": {
1413
"common/*": [
1514
"../../../src/common/*"
1615
],
1716
"browser/*": [
1817
"../../../src/browser/*"
18+
],
19+
"*": [
20+
"./*"
1921
]
2022
},
2123
"strict": true,

addons/addon-ligatures/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"node": ">8.0.0"
1515
},
1616
"scripts": {
17-
"build": "tsc -p src",
18-
"watch": "tsc -w -p src",
17+
"build": "tsgo -p src",
18+
"watch": "tsgo -w -p src",
1919
"prepackage": "npm run build",
2020
"package": "webpack",
2121
"pretest": "npm run build",

0 commit comments

Comments
 (0)