2019-12-31 22:06:19 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-09-01 07:36:48 -07:00
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"es2021"
|
|
|
|
|
],
|
2019-12-31 22:06:19 +08:00
|
|
|
"outDir": "../out-benchmark",
|
|
|
|
|
"types": ["../../../node_modules/@types/node"],
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"strict": false,
|
2023-09-01 07:36:48 -07:00
|
|
|
"target": "es2021",
|
2019-12-31 22:06:19 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"common/*": ["../../../src/common/*"],
|
|
|
|
|
"browser/*": ["../../../src/browser/*"],
|
2023-10-18 01:09:39 +08:00
|
|
|
"SerializeAddon": ["../src/SerializeAddon"],
|
2023-11-02 08:52:09 -07:00
|
|
|
"@xterm/addon-serialize": [
|
|
|
|
|
"../typings/addon-serialize.d.ts"
|
2023-10-18 01:09:39 +08:00
|
|
|
]
|
2019-12-31 22:06:19 +08:00
|
|
|
}
|
|
|
|
|
},
|
2021-11-20 17:48:45 +00:00
|
|
|
"include": ["../**/*", "../../../typings/xterm.d.ts"],
|
2019-12-31 22:06:19 +08:00
|
|
|
"exclude": ["../../../**/*test.ts", "../../**/*api.ts"],
|
|
|
|
|
"references": [
|
|
|
|
|
{ "path": "../../../src/common" },
|
|
|
|
|
{ "path": "../../../src/browser" }
|
|
|
|
|
]
|
|
|
|
|
}
|