We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f52b401 commit 3c2e3fbCopy full SHA for 3c2e3fb
package.json
@@ -12,7 +12,7 @@
12
"discord.js"
13
],
14
"license": "GNU",
15
- "main": "index.js",
+ "main": "dist",
16
"prettier": {
17
"arrowParens": "avoid",
18
"bracketSpacing": false,
@@ -28,5 +28,6 @@
28
"prepublishOnly": "npm run prettier && npm run build",
29
"prettier": "prettier --write *.ts *.json README.md"
30
},
31
+ "types": "dist",
32
"version": "0.1.0"
33
}
tsconfig.json
@@ -0,0 +1,10 @@
1
+{
2
+ "compilerOptions": {
3
+ "declaration": true,
4
+ "module": "commonjs",
5
+ "outDir": "dist",
6
+ "rootDir": "src",
7
+ "strict": true,
8
+ "target": "ES2021"
9
+ }
10
+}
0 commit comments