1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 01:18:39 +03:00
tabby/tsconfig.json
2017-10-20 21:44:34 +02:00

25 lines
494 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2016",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"declaration": true,
"skipLibCheck": true,
"lib": [
"dom",
"es5",
"es6",
"es7",
"es2015"
]
}
}