tabby/tsconfig.json

54 lines
1.2 KiB
JSON
Raw Normal View History

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