Files

35 lines
587 B
JSON
Raw Permalink Normal View History

2019-06-08 11:49:14 -07:00
{
"compilerOptions": {
"lib": [
"dom",
2023-09-01 07:36:48 -07:00
"es2021"
2019-06-08 11:49:14 -07:00
],
"rootDir": ".",
2019-06-19 00:07:09 +02:00
"outDir": "../../out-test/api",
2019-06-08 11:49:14 -07:00
"types": [
2020-09-10 06:31:59 -07:00
"../../node_modules/@types/mocha",
"../../node_modules/@types/node"
2019-06-08 11:49:14 -07:00
],
"sourceMap": true,
"removeComments": true,
"pretty": true,
2020-02-12 16:00:21 -06:00
"strict": true,
2020-02-11 11:39:36 -06:00
"declaration": true,
2020-02-12 16:00:21 -06:00
"baseUrl": ".",
"paths": {
"browser/*": [
"../../src/browser/*"
]
}
2019-06-08 11:49:14 -07:00
},
"include": [
"./**/*",
2019-06-19 00:07:09 +02:00
"../../typings/xterm.d.ts"
2020-02-12 16:00:21 -06:00
],
"references": [
{
"path": "../../src/browser"
}
2019-06-08 11:49:14 -07:00
]
}