UNPKG

appwrite-utils-cli

Version:

Appwrite Utility Functions to help with database management, data conversion, data import, migrations, and much more. Meant to be used as a CLI tool, I do not recommend installing this in frontend environments.

45 lines (41 loc) 1.08 kB
{ "compilerOptions": { // Enable latest features "target": "ESNext", "module": "NodeNext", "lib": ["ESNext"], "moduleDetection": "force", "jsx": "react-jsx", "allowJs": true, "allowArbitraryExtensions": true, "allowSyntheticDefaultImports": true, "resolveJsonModule": true, // NodeNext mode "moduleResolution": "NodeNext", "verbatimModuleSyntax": true, "noEmit": false, "emitDeclarationOnly": false, // Best practices "strict": true, "skipLibCheck": true, "noFallthroughCasesInSwitch": true, // Some stricter flags (disabled by default) "noUnusedLocals": false, "noUnusedParameters": false, "noPropertyAccessFromIndexSignature": false, "baseUrl": ".", "esModuleInterop": true, "outDir": "./dist", "rootDir": "./src", "declaration": true }, "include": ["src/**/*"], "exclude": [ "node_modules", "dist", "src/appwrite", "src/functions/templates", "src/_test/appwrite", "example/*" ] }