mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 02:06:29 +03:00
33 lines
718 B
JSON
33 lines
718 B
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"
|
|
],
|
|
"paths": {
|
|
"terminus-*": ["../../terminus-*/src"]
|
|
}
|
|
}
|
|
}
|