Resolve "Create basic npm project with typescript" #19

Merged
clbertolini merged 4 commits from 1-create-basic-npm-project-with-typescript into main 2023-10-03 20:35:56 +00:00
4 changed files with 43 additions and 1 deletions
Showing only changes of commit 897a0f8d8a - Show all commits

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules/**
dist/**

29
package-lock.json generated Normal file
View File

@ -0,0 +1,29 @@
{
"name": "@finvis/usxi",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@finvis/usxi",
"version": "1.0.0",
"license": "ISC",
"devDependencies": {
"typescript": "^5.2.2"
}
},
"node_modules/typescript": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz",
"integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==",
"dev": true,
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}

View File

@ -8,5 +8,8 @@
},
"keywords": [],
"author": "",
"license": "ISC"
"license": "ISC",
"devDependencies": {
"typescript": "^5.2.2"
}
}

8
tsconfig.json Normal file
View File

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