mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-08 05:29:52 +00:00
33 lines
704 B
JSON
33 lines
704 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src/",
|
|
"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,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"dom",
|
|
"es5",
|
|
"es6",
|
|
"es7"
|
|
],
|
|
"paths": {
|
|
"src/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|