tabby/tsconfig.json

25 lines
502 B
JSON
Raw Normal View History

2017-06-10 06:29:16 +08:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2016",
"noImplicitAny": false,
"removeComments": false,
2018-05-20 22:12:05 +08:00
"emitDeclarationOnly": false,
2017-06-10 06:29:16 +08:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"declaration": true,
"skipLibCheck": true,
"lib": [
"dom",
"es5",
"es6",
"es7",
"es2015"
2017-06-10 06:29:16 +08:00
]
}
}