Files

44 lines
724 B
JSON
Raw Permalink Normal View History

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