feat: initial prototype #1

Merged
naomi merged 3 commits from feat/init into main 2025-02-10 20:58:24 -08:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit bd1593d87d - Show all commits

View File

@ -3,10 +3,10 @@
"version": "0.0.0",
"description": "Our custom logging package, which pipes logs to our alerts server.",
"type": "module",
"main": "index.js",
"main": "prod/index.js",
"scripts": {
"lint": "eslint src --max-warnings 0",
"build": "tsc",
"build": "rm -rf prod && tsc",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {

View File

@ -2,7 +2,9 @@
"extends": "@nhcarrigan/typescript-config",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./prod"
"outDir": "./prod",
"sourceMap": true,
"declaration": true
},
"exclude": ["test/**/*.ts", "vitest.config.ts"]
}