mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-10 12:16:34 +03:00
34 lines
804 B
JSON
34 lines
804 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./lib",
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"removeComments": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2015.iterable",
|
|
"es2017",
|
|
"es7"
|
|
]
|
|
},
|
|
"compileOnSave": false,
|
|
"exclude": [
|
|
"dist",
|
|
"src",
|
|
"node_modules",
|
|
"*/node_modules"
|
|
]
|
|
}
|