1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-21 18:07:54 +03:00
tabby/web/tsconfig.json

37 lines
856 B
JSON
Raw Normal View History

2021-06-16 00:43:02 +03:00
{
"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",
2021-06-30 00:57:04 +03:00
"tabby*",
2021-06-16 00:43:02 +03:00
"platforms"
]
}