Files

25 lines
649 B
JSON
Raw Permalink Normal View History

2025-12-13 16:34:17 +02:00
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"verbatimModuleSyntax": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"noEmit": true,
"baseUrl": ".",
"types": ["vite/client", "@types/dom-speech-recognition"],
2025-12-13 16:34:17 +02:00
"paths": {
"@/*": ["../ui/src/*"],
"@vscode/*": ["./webview/*"],
"@openchamber/ui/*": ["../ui/src/*"]
}
},
"include": ["webview/**/*", "../ui/src/**/*"]
2025-12-13 16:34:17 +02:00
}