CoolFace
Apppublic

HyperCluster/Fara-BrowserUse

sourceHugging Facemitupdated 10mo agoView on Hugging Face
5likes
tsconfig.app.json36 linesDownload Raw Back to root
1{
2  "compilerOptions": {
3    "target": "ES2020",
4    "useDefineForClassFields": true,
5    "lib": [
6      "ES2020",
7      "DOM",
8      "DOM.Iterable"
9    ],
10    "module": "ESNext",
11    "skipLibCheck": true,
12    /* Bundler mode */
13    "moduleResolution": "bundler",
14    "allowImportingTsExtensions": true,
15    "isolatedModules": true,
16    "moduleDetection": "force",
17    "noEmit": true,
18    "jsx": "react-jsx",
19    /* Linting */
20    "strict": false,
21    "noUnusedLocals": false,
22    "noUnusedParameters": false,
23    "noImplicitAny": false,
24    "noFallthroughCasesInSwitch": false,
25    "baseUrl": ".",
26    "paths": {
27      "@/*": [
28        "./src/*"
29      ]
30    }
31  },
32  "include": [
33    "src"
34  ]
35}
36