CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
tsconfig.app.json26 linesDownload Raw Back to client
1{2  "compilerOptions": {3    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",4    "target": "es2023",5    "lib": ["ES2023", "DOM"],6    "module": "esnext",7    "types": ["vite/client"],8    "skipLibCheck": true,9 10    /* Bundler mode */11    "moduleResolution": "bundler",12    "allowImportingTsExtensions": true,13    "verbatimModuleSyntax": true,14    "moduleDetection": "force",15    "noEmit": true,16    "jsx": "react-jsx",17 18    /* Linting */19    "noUnusedLocals": true,20    "noUnusedParameters": true,21    "erasableSyntaxOnly": true,22    "noFallthroughCasesInSwitch": true23  },24  "include": ["src"]25}26