1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +03:00
tabby/tsconfig.json
2021-07-06 09:40:54 +02:00

48 lines
1.0 KiB
JSON

{
"compilerOptions": {
"module": "es2015",
"target": "es2016",
"moduleResolution": "node",
"noImplicitAny": false,
"removeComments": false,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2015",
"ES2017",
"ES2019",
"ES2021"
],
"paths": {
"*": [
"../node_modules/*",
"../../app/node_modules/*"
],
"common*": [
"../../tabby-terminal/node_modules/xterm/src/common*"
],
"tabby-*": ["../../tabby-*/src"]
}
},
"typeAcquisition": {
"include": [
"../node_modules",
"../../app/node_modules"
]
}
}