tabby/tsconfig.json
2019-06-06 13:45:15 +02:00

26 lines
564 B
JSON

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