Files
openchamber/packages/electron/tsconfig.json
T
Bohdan Triapitsyn a3908232ae feat: render LSP tool output in chat
Adds expandable LSP tool rows with scan icon and stable file path display
Adds formatted/raw JSON output toggle and copy action
Improves compact LSP input formatting
2026-06-03 17:15:52 +03:00

18 lines
426 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"moduleDetection": "force",
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"types": ["node", "electron"]
},
"include": ["*.mjs", "*.cjs", "scripts/**/*.mjs", "scripts/**/*.cjs"]
}