private-voice-agent / tsconfig.json
aut4rk's picture
Deploy static voice agent
009fd18 verified
Raw
History Blame
736 Bytes
Invalid JSON:Expected property name or '}' in JSONat line 3, column 5
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}