Deep-Search / tsconfig.json
prithivMLmods's picture
Upload 39 files
a7634ef verified
raw
history blame contribute delete
539 Bytes
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["client"],
"references": [{ "path": "./tsconfig.node.json" }]
}