Files
tabby-web/frontend/tsconfig.json

32 lines
672 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-09-13 09:54:00 +02:00
"module": "esnext",
2021-05-22 15:52:23 +02:00
"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
},
2021-07-24 20:25:09 +02:00
"include": ["src"]
2021-05-22 15:52:23 +02:00
}