mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-23 21:34:13 +03:00
29 lines
587 B
JSON
29 lines
587 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"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"
|
|
]
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|