repos / starfx

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

Eric Bower  ·  2025-06-06

tsconfig.json

 1{
 2  "compilerOptions": {
 3    "target": "es2020",
 4    "lib": ["es6", "dom"],
 5    "module": "NodeNext",
 6    "moduleResolution": "NodeNext",
 7    "jsx": "react",
 8
 9    "esModuleInterop": true,
10    "forceConsistentCasingInFileNames": true,
11    "strict": true,
12    "skipLibCheck": true,
13    "resolveJsonModule": true,
14    "emitDecoratorMetadata": true,
15    "experimentalDecorators": true,
16    "downlevelIteration": true,
17    "isolatedModules": true
18  }
19}