repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / examples / basic
Eric Bower  ·  2025-06-06

tsconfig.json

 1{
 2  "compilerOptions": {
 3    "target": "ESNext",
 4    "lib": ["DOM", "DOM.Iterable", "ESNext"],
 5    "module": "ESNext",
 6    "skipLibCheck": true,
 7
 8    /* Bundler mode */
 9    "moduleResolution": "bundler",
10    "allowImportingTsExtensions": true,
11    "resolveJsonModule": true,
12    "isolatedModules": true,
13    "noEmit": true,
14    "jsx": "react-jsx",
15
16    /* Linting */
17    "strict": true,
18    "noUnusedLocals": true,
19    "noUnusedParameters": true,
20    "noFallthroughCasesInSwitch": true
21  },
22  "include": ["src"],
23  "references": [{ "path": "./tsconfig.node.json" }]
24}