react-code-dataset / chakra-ui /tsconfig.build.json
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
620 Bytes
{
"compilerOptions": {
// Enable latest features
"lib": ["DOM", "ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"customConditions": ["dev"],
// JSX
"jsx": "react-jsx",
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"types": ["node", "vitest/globals"]
}
}