From 16fc473a2a3378952909a29b3976b21d66b7086d Mon Sep 17 00:00:00 2001 From: Julia Lange Date: Thu, 2 Apr 2020 19:14:49 -0700 Subject: [PATCH] +tsconfig, example info.json file, package.json. -.json & .js files from gitignore. JS files now go to /output --- .gitignore | 5 +++-- data/info.json | 4 ++++ package.json | 7 +++++++ tsconfig.json | 7 +++++++ 4 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 data/info.json create mode 100644 package.json create mode 100644 tsconfig.json 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