mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* Refactor imports to use absolute path * Rename absolute import symbol from src to # * Refactor imports to use absolute path * Rename absolute import symbol from src to # * Remove unused LoadMessageModal
36 lines
734 B
JSON
36 lines
734 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": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"types": ["vite/client", "vitest/globals"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src",
|
|
"vite-env.d.ts",
|
|
"vite.config.ts",
|
|
"vitest.setup.ts",
|
|
"test-utils.tsx"
|
|
]
|
|
}
|