diff --git a/.gitignore b/.gitignore index 2f4b981..2ea6f14 100644 --- a/.gitignore +++ b/.gitignore @@ -74,5 +74,6 @@ typings/ # FuseBox cache .fusebox/ -*.json -*.js + +# Outputed JS files from compiling +output/ diff --git a/data/info.json b/data/info.json new file mode 100644 index 0000000..de0ff7c --- /dev/null +++ b/data/info.json @@ -0,0 +1,4 @@ +{ + "key": "your key here", + "prefix": "!" +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..0889106 --- /dev/null +++ b/package.json @@ -0,0 +1,7 @@ +{ + "dependencies": { + "@types/node": "^13.7.7", + "discord.js": "^12.0.1", + "fs": "^0.0.1-security" + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..86dba06 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "outDir": "output" + } +} \ No newline at end of file