1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-08-16 07:50:34 +03:00
tabby/tsconfig.json

51 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2017-06-10 01:29:16 +03:00
{
"compilerOptions": {
"module": "es2015",
2020-03-01 19:02:49 +03:00
"target": "es2016",
"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": [
2021-07-06 10:40:54 +03:00
"DOM",
"ES5",
"ES6",
"ES7",
"ES2015",
"ES2017",
"ES2019",
"ES2021"
2021-01-31 20:20:58 +03:00
],
"paths": {
2021-07-06 10:40:54 +03:00
"*": [
"../node_modules/*",
2022-02-07 18:56:06 +03:00
"../../app/node_modules/*",
"./app/node_modules/*"
2021-07-06 10:40:54 +03:00
],
"tabby-*": ["../../tabby-*/src"],
2021-01-31 20:20:58 +03:00
}
2021-07-06 10:40:54 +03:00
},
"typeAcquisition": {
"include": [
"../node_modules",
"../../app/node_modules"
]
2022-06-26 17:19:16 +03:00
},
"angularCompilerOptions": {
"strictTemplates": true,
"enableResourceInlining": true,
"strictInjectionParameters": true,
},
2017-06-10 01:29:16 +03:00
}