CoolFace
Apppublic

eswar0474/FL_IDS

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
tsconfig.json24 linesDownload Raw Back to root
1{2  "include": ["client/src/**/*", "shared/**/*", "server/**/*"],3  "exclude": ["node_modules", "build", "dist", "**/*.test.ts"],4  "compilerOptions": {5    "incremental": true,6    "tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",7    "noEmit": true,8    "module": "ESNext",9    "strict": true,10    "lib": ["esnext", "dom", "dom.iterable"],11    "jsx": "preserve",12    "esModuleInterop": true,13    "skipLibCheck": true,14    "allowImportingTsExtensions": true,15    "moduleResolution": "bundler",16    "baseUrl": ".",17    "types": ["node", "vite/client"],18    "paths": {19      "@/*": ["./client/src/*"],20      "@shared/*": ["./shared/*"]21    }22  }23}24