test 123
This commit is contained in:
parent
d7513092df
commit
c1860ca13d
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
.vscode/
|
||||
node_modules/
|
||||
package-lock.json
|
2
index.js
2
index.js
|
@ -1,4 +1,4 @@
|
|||
function sum(a, b) {
|
||||
return a + b;
|
||||
}
|
||||
console.log(sum(4, 5));
|
||||
console.log(sum(2, 3));
|
||||
|
|
2
index.ts
2
index.ts
|
@ -3,4 +3,4 @@ function sum(a: number, b: number)
|
|||
return a + b;
|
||||
}
|
||||
|
||||
console.log(sum(4, 5));
|
||||
console.log(sum(2, 3));
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "test",
|
||||
"name": "lauchpioos",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
|
@ -7,5 +7,9 @@
|
|||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"ts-node": "^10.4.0",
|
||||
"typescript": "^4.5.2"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue