Files

43 lines
754 B
JSON
Raw Permalink Normal View History

2023-08-27 08:08:42 -07:00
{
"compilerOptions": {
"lib": [
"dom",
"es6"
],
"rootDir": ".",
"outDir": "../../out-test/playwright",
"types": [
2023-09-08 07:28:41 -07:00
"../../node_modules/@types/node",
"../../node_modules/@lunapaint/png-codec"
2023-08-27 08:08:42 -07:00
],
"sourceMap": true,
"removeComments": true,
"pretty": true,
"strict": true,
"declaration": true,
"baseUrl": ".",
"paths": {
"browser/*": [
"../../src/browser/*"
],
"common/*": [
"../../src/common/*"
]
},
"target": "es2016",
"module": "commonjs",
},
"include": [
"./**/*",
"../../typings/xterm.d.ts"
],
"references": [
{
"path": "../../src/browser"
},
{
"path": "../../src/common"
}
]
}