1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-27 04:25:05 +03:00
tabby/terminus-core/tsconfig.json

29 lines
590 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 00:04:29 +03:00
"target": "es2015",
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-11 23:45:59 +03:00
"include": [
"src"
2017-04-11 03:22:48 +03:00
]
}