Files

26 lines
715 B
JSON
Raw Permalink Normal View History

2025-12-07 19:32:53 +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-07 19:32:53 +02:00
"paths": {
"@/*": ["../ui/src/*", "./src/*"],
"@web/*": ["./src/*"],
"@openchamber/ui/*": ["../ui/src/*"],
"@openchamber/web/*": ["./src/*"]
}
},
"include": ["src", "scripts", "../ui/src", "../ui/src/types/**/*"]
2025-12-07 19:32:53 +02:00
}