2017-06-10 00:29:16 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-24 13:40:37 +02:00
|
|
|
"module": "es2015",
|
2020-03-01 17:02:49 +01:00
|
|
|
"target": "es2016",
|
2019-06-24 13:40:37 +02:00
|
|
|
"moduleResolution": "node",
|
2017-06-10 00:29:16 +02:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
2018-05-20 16:12:05 +02:00
|
|
|
"emitDeclarationOnly": false,
|
2017-06-10 00:29:16 +02:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"skipLibCheck": true,
|
2018-08-26 13:15:00 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-07-03 12:24:26 +02:00
|
|
|
"importHelpers": true,
|
2019-09-18 20:56:59 +02:00
|
|
|
"strictNullChecks": true,
|
2017-06-10 00:29:16 +02:00
|
|
|
"lib": [
|
2021-07-06 09:40:54 +02:00
|
|
|
"DOM",
|
|
|
|
"ES5",
|
|
|
|
"ES6",
|
|
|
|
"ES7",
|
|
|
|
"ES2015",
|
|
|
|
"ES2017",
|
|
|
|
"ES2019",
|
|
|
|
"ES2021"
|
2021-01-31 18:20:58 +01:00
|
|
|
],
|
|
|
|
"paths": {
|
2021-07-06 09:40:54 +02:00
|
|
|
"*": [
|
|
|
|
"../node_modules/*",
|
2022-02-07 16:56:06 +01:00
|
|
|
"../../app/node_modules/*",
|
|
|
|
"./app/node_modules/*"
|
2021-07-06 09:40:54 +02:00
|
|
|
],
|
|
|
|
"common*": [
|
|
|
|
"../../tabby-terminal/node_modules/xterm/src/common*"
|
|
|
|
],
|
2021-06-29 23:57:04 +02:00
|
|
|
"tabby-*": ["../../tabby-*/src"]
|
2021-01-31 18:20:58 +01:00
|
|
|
}
|
2021-07-06 09:40:54 +02:00
|
|
|
},
|
|
|
|
"typeAcquisition": {
|
|
|
|
"include": [
|
|
|
|
"../node_modules",
|
|
|
|
"../../app/node_modules"
|
|
|
|
]
|
2022-06-26 16:19:16 +02:00
|
|
|
},
|
|
|
|
"angularCompilerOptions": {
|
|
|
|
"strictTemplates": true,
|
|
|
|
"enableResourceInlining": true,
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
},
|
2017-06-10 00:29:16 +02:00
|
|
|
}
|