react-code-dataset / tsdx /tsconfig.json
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
487 Bytes
{
"include": ["src/**/*"],
"exclude": ["src/template/**/*"],
"compilerOptions": {
"allowJs": true,
"jsx": "react",
"importHelpers": true,
"esModuleInterop": true,
"outDir": "dist",
"declaration": false,
"module": "commonjs",
"rootDir": "src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"target": "es2017"
}
}