Files

41 lines
688 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"module": "commonjs",
2024-07-03 04:31:34 -07:00
"target": "ESNext",
"lib": [
2024-07-03 02:30:27 -07:00
"es2021",
],
"rootDir": ".",
"outDir": "../out-test",
"sourceMap": true,
"removeComments": true,
"paths": {
"common/*": [
"../../../src/common/*"
2024-07-03 02:30:27 -07:00
],
"browser/*": [
"../../../src/browser/*"
]
},
"strict": true,
"types": [
"../../../node_modules/@types/node"
]
},
"include": [
"./**/*",
"../../../typings/xterm.d.ts"
],
"references": [
{
"path": "../../../src/common"
2024-07-03 02:30:27 -07:00
},
{
"path": "../../../src/browser"
},
{
"path": "../../../test/playwright"
}
]
}