mirror of
https://github.com/Eugeny/tabby
synced 2024-11-13 00:17:12 +00:00
50 lines
1.1 KiB
JSON
50 lines
1.1 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/*",
|
|
"./app/node_modules/*"
|
|
],
|
|
"tabby-*": ["../../tabby-*/src"],
|
|
}
|
|
},
|
|
"typeAcquisition": {
|
|
"include": [
|
|
"../node_modules",
|
|
"../../app/node_modules"
|
|
]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"enableResourceInlining": true,
|
|
"strictInjectionParameters": true,
|
|
},
|
|
}
|