2 Commits

Author SHA1 Message Date
naomi 34e963250d release: v0.0.1
Node.js CI / Lint and Test (push) Successful in 34s
2025-10-07 17:37:32 -07:00
naomi 58b0ec20f2 fix: update tsconfig to include source maps and declarations 2025-10-07 17:37:17 -07:00
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@nhcarrigan/discord-analytics",
"version": "0.0.0",
"version": "0.0.1",
"description": "Package that pairs with our logging tool to provide analytics for our Discord bots.",
"type": "module",
"private": false,
+3 -1
View File
@@ -2,6 +2,8 @@
"extends": "@nhcarrigan/typescript-config",
"compilerOptions": {
"outDir": "./prod",
"rootDir": "./src"
"rootDir": "./src",
"sourceMap": true,
"declaration": true
},
}