tabby/tsconfig.json

23 lines
468 B
JSON
Raw Normal View History

2017-06-09 22:29:16 +00:00
{
"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",
"es2015",
"es7"
]
}
}