From 59db39b33fbd838d99544f265ed592e1b330e6d5 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Wed, 13 Jul 2022 12:25:15 -0500 Subject: [PATCH] chore(nest): add config --- egg.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 egg.json diff --git a/egg.json b/egg.json new file mode 100644 index 0000000..bba1267 --- /dev/null +++ b/egg.json @@ -0,0 +1,28 @@ +{ + "$schema": "https://x.nest.land/eggs@0.3.10/src/schema.json", + "name": "biscuit", + "entry": "./mod.ts", + "description": "A brand new bleeding edge non bloated Discord library", + "homepage": "https://github.com/oasisjs/biscuit", + "version": "0.0.1", + "releaseType": "minor", + "unstable": false, + "unlisted": false, + "files": [ + "./packages/**/*", + "./mod.ts", + "./deps.ts", + "LICENSE", + "README.md" + ], + "ignore": [ + "npm", + "build.ts", + "scripts.ts", + ".git" + ], + "checkFormat": true, + "checkTests": false, + "checkInstallation": false, + "check": true +}