2020-09-09 13:54:43 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
2024-07-03 04:31:34 -07:00
|
|
|
"target": "ESNext",
|
2020-09-09 13:54:43 -07:00
|
|
|
"lib": [
|
2024-07-02 14:52:47 -07:00
|
|
|
"es2021",
|
2020-09-09 13:54:43 -07:00
|
|
|
],
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"outDir": "../out-test",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"removeComments": true,
|
2024-07-02 14:52:47 -07:00
|
|
|
"paths": {
|
|
|
|
|
"common/*": [
|
|
|
|
|
"../../../src/common/*"
|
|
|
|
|
],
|
|
|
|
|
"browser/*": [
|
|
|
|
|
"../../../src/browser/*"
|
2026-02-13 05:29:22 -08:00
|
|
|
],
|
|
|
|
|
"*": [
|
|
|
|
|
"./*"
|
2024-07-02 14:52:47 -07:00
|
|
|
]
|
|
|
|
|
},
|
2020-09-09 13:54:43 -07:00
|
|
|
"strict": true,
|
|
|
|
|
"types": [
|
2024-07-07 09:06:26 -07:00
|
|
|
"../../../node_modules/@types/node"
|
2020-09-09 13:54:43 -07:00
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"./**/*",
|
|
|
|
|
"../../../typings/xterm.d.ts"
|
2024-07-02 14:52:47 -07:00
|
|
|
],
|
|
|
|
|
"references": [
|
|
|
|
|
{
|
|
|
|
|
"path": "../../../src/common"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "../../../src/browser"
|
2024-07-07 09:06:26 -07:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "../../../test/playwright"
|
2024-07-02 14:52:47 -07:00
|
|
|
}
|
2020-09-09 13:54:43 -07:00
|
|
|
]
|
|
|
|
|
}
|