Roo-Code/webview-ui/tsconfig.json
Trung Dang f89c11ec67
feat(marketplace): UI form for configurable install (#9)
* feat(wip): installation UI

* chore: rebase, refactor and fixes

---------

Co-authored-by: elianiva <51877647+elianiva@users.noreply.github.com>
2025-05-05 14:35:19 +07:00

26 lines
601 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@src/*": ["./src/*"],
"@roo/*": ["../src/*"]
}
},
"include": ["src", "../src/shared"]
}