UNPKG

@microfox/slack

Version:

This package provides a lightweight, proxy interface to the official Slack Web API, offering a curated set of the most commonly used functions for building Slack integrations. It is designed to be simple, efficient, and easy to integrate into your project

35 lines (34 loc) 808 B
{ "compilerOptions": { "target": "ES2020", "module": "NodeNext", "moduleResolution": "NodeNext", "lib": ["ES2020"], "allowJs": true, "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "strictPropertyInitialization": false, "noImplicitAny": true, "noCheck": false, "outDir": "./dist", "rootDir": "./src", "baseUrl": "./src", "resolveJsonModule": true, "paths": { "@/*": ["*"] } }, "ts-node": { "esm": true, "compilerOptions": { "module": "NodeNext", "moduleResolution": "NodeNext" } }, "include": ["src/**/*"], "exclude": ["node_modules", "dist/**", ".serverless/**"] }