UNPKG

skorbaz-updater

Version:

A CLI tool to handle Skorbaz App hot updates

40 lines (36 loc) 881 B
{ "compilerOptions": { // Environment setup & latest features "lib": ["ESNext"], "target": "ES2022", "module": "CommonJS", "moduleDetection": "force", "jsx": "react-jsx", "allowJs": true, // Build settings "outDir": "./dist", "rootDir": "./", "moduleResolution": "node", "allowImportingTsExtensions": false, "verbatimModuleSyntax": false, "noEmit": false, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false }, "include": [ "*.ts" ], "exclude": [ "node_modules", "dist" ] }