react-code-dataset / nivo /website /tsconfig.json
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
655 Bytes
{
"include": [
"./src/**/*",
"./gatsby-browser.tsx",
"./gatsby-node.ts",
"./gatsby-config.ts",
"./gatsby-ssr.tsx",
"./plugins/**/*"
],
"compilerOptions": {
"lib": ["dom", "esnext"],
"target": "esnext",
"jsx": "react",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"typeRoots": ["node_modules/@types/", "./src/@types/"],
"strict": true,
"baseUrl": "."
}
}