Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
933 Bytes
Invalid JSON: Expected double-quoted property name in JSON at line 9, column 5
{
"compilerOptions": {
"target": "ESNEXT",
"module": "es2020",
"moduleResolution": "node",
"jsx": "preserve",
"noEmit": true,
"strict": true,
// @TODO: It's mandatory to disable this strict check at the moment
// otherwise we have to type every import we do. The migration is an
// incremental process so it happens that we import JavaScript module
// from TypeScript one. The compiler always translates those imports
// as impliciy any.
"noImplicitAny": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"exclude": [
"examples/hooks-next/next-env.d.ts",
// @TODO: we need to re-enable type checking in the React Native example
// when the RN types work with React 18.
"examples/hooks-react-native"
]
}