UNPKG

levtor

Version:

Levtor — a smart, fuzzy, AI-powered chat command handler and guardian for wallets and AI integration.

35 lines (30 loc) 821 B
{ "compilerOptions": { // Environment setup & latest features "lib": ["ESNext"], "target": "ES2020", "module": "ESNext", "moduleDetection": "force", "jsx": "react-jsx", "allowJs": true, // Bundler mode "moduleResolution": "node", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "noEmit": true, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, "declaration": true, "outDir": "dist", "esModuleInterop": true, "forceConsistentCasingInFileNames": true }, "include": ["src"] }