Files
tabby-web/tsconfig.container.json

32 lines
677 B
JSON
Raw Normal View History

2021-05-22 15:52:23 +02:00
{
"compilerOptions": {
2021-06-14 23:00:05 +02:00
"baseUrl": "src/",
2021-05-22 15:52:23 +02:00
"module": "esNext",
"target": "es6",
"moduleResolution": "node",
"noImplicitAny": false,
"removeComments": false,
"emitDeclarationOnly": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"lib": [
"dom",
"es5",
"es6",
"es7"
2021-06-14 23:00:05 +02:00
],
"paths": {
"*": ["src/*"]
}
2021-06-12 13:05:35 +02:00
},
"exclude": ["app-dist"]
2021-05-22 15:52:23 +02:00
}