+tsconfig, example info.json file, package.json. -.json & .js files from gitignore. JS files now go to /output
This commit is contained in:
parent
f83a4231f1
commit
16fc473a2a
4 changed files with 21 additions and 2 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -74,5 +74,6 @@ typings/
|
||||||
|
|
||||||
# FuseBox cache
|
# FuseBox cache
|
||||||
.fusebox/
|
.fusebox/
|
||||||
*.json
|
|
||||||
*.js
|
# Outputed JS files from compiling
|
||||||
|
output/
|
||||||
|
|
|
||||||
4
data/info.json
Normal file
4
data/info.json
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
"key": "your key here",
|
||||||
|
"prefix": "!"
|
||||||
|
}
|
||||||
7
package.json
Normal file
7
package.json
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"dependencies": {
|
||||||
|
"@types/node": "^13.7.7",
|
||||||
|
"discord.js": "^12.0.1",
|
||||||
|
"fs": "^0.0.1-security"
|
||||||
|
}
|
||||||
|
}
|
||||||
7
tsconfig.json
Normal file
7
tsconfig.json
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es5",
|
||||||
|
"module": "commonjs",
|
||||||
|
"outDir": "output"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue