add ligatures addon config

This commit is contained in:
Labhansh Agrawal
2020-05-01 14:26:03 +05:30
parent ef4ecf7c8e
commit c818381ef1
3 changed files with 7 additions and 3 deletions
+4 -2
View File
@@ -18,12 +18,14 @@
"addons/xterm-addon-web-links/src/tsconfig.json",
"addons/xterm-addon-webgl/src/tsconfig.json",
"addons/xterm-addon-serialize/src/tsconfig.json",
"addons/xterm-addon-serialize/benchmark/tsconfig.json"
"addons/xterm-addon-serialize/benchmark/tsconfig.json",
"addons/xterm-addon-ligatures/src/tsconfig.json"
],
"sourceType": "module"
},
"ignorePatterns": [
"**/typings/*.d.ts"
"**/typings/*.d.ts",
"**/node_modules"
],
"plugins": [
"@typescript-eslint"
+1
View File
@@ -28,6 +28,7 @@ if (changedFiles.some(e => e.search(/^addons\//) === -1)) {
const addonPackageDirs = [
path.resolve(__dirname, '../addons/xterm-addon-attach'),
path.resolve(__dirname, '../addons/xterm-addon-fit'),
path.resolve(__dirname, '../addons/xterm-addon-ligatures'),
path.resolve(__dirname, '../addons/xterm-addon-search'),
path.resolve(__dirname, '../addons/xterm-addon-serialize'),
path.resolve(__dirname, '../addons/xterm-addon-unicode11'),
+2 -1
View File
@@ -12,6 +12,7 @@
{ "path": "./addons/xterm-addon-web-links/src" },
{ "path": "./addons/xterm-addon-webgl/src" },
{ "path": "./addons/xterm-addon-serialize/src" },
{ "path": "./addons/xterm-addon-serialize/benchmark" }
{ "path": "./addons/xterm-addon-serialize/benchmark" },
{ "path": "./addons/xterm-addon-ligatures/src" }
]
}