mirror of
https://github.com/xtermjs/xterm.js.git
synced 2026-01-25 16:03:36 +00:00
42 lines
708 B
JSON
42 lines
708 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"es2021",
|
|
],
|
|
"rootDir": ".",
|
|
"outDir": "../out-test",
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"common/*": [
|
|
"../../../src/common/*"
|
|
],
|
|
"browser/*": [
|
|
"../../../src/browser/*"
|
|
]
|
|
},
|
|
"strict": true,
|
|
"types": [
|
|
"../../../node_modules/@types/node"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*",
|
|
"../../../typings/xterm.d.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../../../src/common"
|
|
},
|
|
{
|
|
"path": "../../../src/browser"
|
|
},
|
|
{
|
|
"path": "../../../test/playwright"
|
|
}
|
|
]
|
|
}
|