Files

44 lines
724 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
2024-07-03 04:31:34 -07:00
"target": "ESNext",
"lib": [
2024-07-02 14:52:47 -07:00
"es2021",
],
"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
]
},
"strict": true,
"types": [
"../../../node_modules/@types/node"
]
},
"include": [
"./**/*",
"../../../typings/xterm.d.ts"
2024-07-02 14:52:47 -07:00
],
"references": [
{
"path": "../../../src/common"
},
{
"path": "../../../src/browser"
},
{
"path": "../../../test/playwright"
2024-07-02 14:52:47 -07:00
}
]
}