mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
33 lines
644 B
JSON
33 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"es2021",
|
|
],
|
|
"outDir": "../../out-test/benchmark",
|
|
"types": [
|
|
"../../node_modules/@types/node"
|
|
],
|
|
"moduleResolution": "node",
|
|
"strict": false,
|
|
"target": "es2021",
|
|
"module": "commonjs",
|
|
"paths": {
|
|
"common/*": [ "../../src/common/*" ],
|
|
"browser/*": [ "../../src/browser/*" ],
|
|
"Terminal": ["../../src/Terminal"]
|
|
},
|
|
},
|
|
"include": [
|
|
"./**/*",
|
|
"../../typings/xterm.d.ts"
|
|
],
|
|
"exclude": [
|
|
"../../**/*test.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../../src/common" },
|
|
{ "path": "../../src/browser" },
|
|
]
|
|
}
|