mirror of
https://github.com/Termix-SSH/Termix.git
synced 2026-07-09 08:41:01 +00:00
35 lines
958 B
JSON
35 lines
958 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"target": "ES2023",
|
|
"lib": ["ES2023"],
|
|
"module": "nodenext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "nodenext",
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"esModuleInterop": true,
|
|
"noEmit": false,
|
|
"rootDir": "./src",
|
|
"outDir": "./dist/backend",
|
|
"strict": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noUncheckedSideEffectImports": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"allowUnusedLabels": true,
|
|
"allowUnreachableCode": true
|
|
},
|
|
"include": [
|
|
"src/backend/**/*.ts",
|
|
"src/types/**/*.ts",
|
|
"src/ui/types/**/*.ts"
|
|
]
|
|
}
|