openhands / tsconfig.json
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
ee9fcd0 verified
Raw
History Blame Contribute Delete
931 Bytes
Invalid JSON:Expected double-quoted property name in JSONat line 33, column 5
{
"include": [
"**/*.ts",
"**/*.tsx",
"**/.server/**/*.ts",
"**/.server/**/*.tsx",
"**/.client/**/*.ts",
"**/.client/**/*.tsx",
".react-router/types/**/*"
],
"compilerOptions": {
"lib": ["dom", "dom.iterable", "es2022"],
"target": "es2022",
"types": ["@react-router/node", "vite/client"],
"rootDirs": [".", "./.react-router/types"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"ignoreDeprecations": "6.0",
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"#/*": ["./src/*"]
},
// Vite takes care of building everything, not tsc.
"noEmit": true
}
}