1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-24 06:04:04 +03:00
tabby/terminus-terminal/tsconfig.json

27 lines
597 B
JSON
Raw Normal View History

2017-04-11 03:22:48 +03:00
{
"compilerOptions": {
2017-04-11 23:45:59 +03:00
"baseUrl": "src",
2017-04-11 03:22:48 +03:00
"module": "commonjs",
2017-04-17 18:27:04 +03:00
"target": "es2016",
2017-04-11 03:22:48 +03:00
"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"
2017-04-12 13:12:57 +03:00
]
2017-04-11 03:22:48 +03:00
},
2017-04-17 18:27:04 +03:00
"exclude": ["node_modules", "dist"]
2017-04-11 03:22:48 +03:00
}