mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
45 lines
776 B
JSON
45 lines
776 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"es2021",
|
|
],
|
|
"rootDir": ".",
|
|
"outDir": "../out-test",
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"paths": {
|
|
"common/*": [
|
|
"../../../src/common/*"
|
|
],
|
|
"browser/*": [
|
|
"../../../src/browser/*"
|
|
],
|
|
"*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"strict": true,
|
|
"types": [
|
|
"../../../node_modules/@types/node",
|
|
"../../../node_modules/@lunapaint/png-codec"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*",
|
|
"../../../typings/xterm.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../../src/common"
|
|
},
|
|
{
|
|
"path": "../../../src/browser"
|
|
},
|
|
{
|
|
"path": "../../../test/playwright"
|
|
}
|
|
]
|
|
}
|