mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-14 11:15:55 +03:00
27 lines
599 B
JSON
27 lines
599 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"module": "commonjs",
|
|
"target": "es2016",
|
|
"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"
|
|
]
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|