CoolFace
Apppublic

HyperCluster/Fara-BrowserUse

sourceHugging Facemitupdated 10mo agoView on Hugging Face
5likes
tsconfig.node.json23 linesDownload Raw Back to root
1{
2  "compilerOptions": {
3    "target": "ES2022",
4    "lib": ["ES2023"],
5    "module": "ESNext",
6    "skipLibCheck": true,
7
8    /* Bundler mode */
9    "moduleResolution": "bundler",
10    "allowImportingTsExtensions": true,
11    "isolatedModules": true,
12    "moduleDetection": "force",
13    "noEmit": true,
14
15    /* Linting */
16    "strict": true,
17    "noUnusedLocals": false,
18    "noUnusedParameters": false,
19    "noFallthroughCasesInSwitch": true
20  },
21  "include": ["vite.config.ts"]
22}
23