mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-24 02:53:43 +03:00
33 lines
691 B
JSON
33 lines
691 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": "./src",
|
||
|
"module": "commonjs",
|
||
|
"target": "es5",
|
||
|
"declaration": false,
|
||
|
"noImplicitAny": false,
|
||
|
"removeComments": false,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"sourceMap": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"declaration": true,
|
||
|
"declarationDir": "dist",
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"es2015",
|
||
|
"es7"
|
||
|
],
|
||
|
"paths": {
|
||
|
"*": ["../../app/node_modules/*"],
|
||
|
"terminus-*": ["../../terminus-*"]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src"
|
||
|
]
|
||
|
}
|