mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-09 17:18:46 +03:00
37 lines
856 B
JSON
37 lines
856 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"module": "commonjs",
|
|
"target": "es2015",
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"removeComments": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"lib": [
|
|
"dom",
|
|
"es2015",
|
|
"es2015.iterable",
|
|
"es2017",
|
|
"es2019",
|
|
"es7"
|
|
],
|
|
"paths": {
|
|
"*": ["../../app/node_modules/*"]
|
|
}
|
|
},
|
|
"compileOnSave": false,
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"*/node_modules",
|
|
"tabby*",
|
|
"platforms"
|
|
]
|
|
}
|