Resolve "Setup NPM package stuff" #33

Merged
clbertolini merged 3 commits from 16-setup-npm-package-stuff into main 2023-11-14 21:24:30 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit a8c4bcc333 - Show all commits

View File

@ -2,7 +2,8 @@
"name": "@finvis/usxi", "name": "@finvis/usxi",
"version": "1.1.0", "version": "1.1.0",
"description": "", "description": "",
"main": "index.js", "main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": { "scripts": {
"start": "node dist/index.js", "start": "node dist/index.js",
"build": "tsc", "build": "tsc",

View File

@ -1,7 +1,8 @@
{ {
"extends": "@tsconfig/node-lts/tsconfig.json", "extends": "@tsconfig/node-lts/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outDir": "dist" "outDir": "dist",
"declaration": true,
}, },
"include": ["src"], "include": ["src"],
"exclude": ["node_modules"] "exclude": ["node_modules"]