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

30 lines
651 B
JSON
Raw Normal View History

2017-06-10 01:29:16 +03:00
{
"compilerOptions": {
"module": "es2015",
2020-03-01 17:12:24 +03:00
"target": "es2017",
"moduleResolution": "node",
2017-06-10 01:29:16 +03:00
"noImplicitAny": false,
"removeComments": false,
2018-05-20 17:12:05 +03:00
"emitDeclarationOnly": false,
2017-06-10 01:29:16 +03:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"skipLibCheck": true,
2018-08-26 14:15:00 +03:00
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2019-07-03 13:24:26 +03:00
"importHelpers": true,
2019-09-18 21:56:59 +03:00
"strictNullChecks": true,
2017-06-10 01:29:16 +03:00
"lib": [
"dom",
"es5",
"es6",
"es7",
2018-10-09 09:34:23 +03:00
"es2015",
"es2017"
2017-06-10 01:29:16 +03:00
]
}
}