UNPKG

simplify-cord

Version:

SimplifyCord is an unofficial extension of the 'discord.js' library. Our extension aims to simplify the development of Discord bots, promoting cleaner code and easier maintenance.

39 lines (34 loc) 809 B
{ "compilerOptions": { // General options "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, "resolveJsonModule": true, "strict": true, // Language and environment options "lib": ["ESNext"], "target": "ESNext", "module": "NodeNext", "moduleResolution": "NodeNext", // Linting options "noUnusedLocals": true, "noUnusedParameters": true, "noImplicitReturns": true, "noImplicitOverride": true, // Output Options "outDir": "./dist", "rootDir": "./src", "declaration": true, // Path mapping Options "baseUrl": ".", "paths": { "simplify-cord": ["./src/index"], "simplify-cord/*": ["./src/*"], "*": ["src/*"], } }, // Include and Exclude Options "include": ["src/**/*"], "exclude": ["node_modules", "dist"] }