changed example
This commit is contained in:
parent
160ede91e6
commit
bf0bd7cc16
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,6 +1,7 @@
|
|||
.vscode/
|
||||
.vs/
|
||||
node_modules/
|
||||
[Oo]ut/
|
||||
|
||||
package-lock.json
|
||||
*.js
|
2
index.ts
2
index.ts
|
@ -3,4 +3,4 @@ function sum(a: number, b: number)
|
|||
return a + b;
|
||||
}
|
||||
|
||||
console.log(sum(2, 3));
|
||||
console.log(sum(420, 69));
|
|
@ -1,6 +1,8 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "commonjs"
|
||||
"module": "commonjs",
|
||||
"outDir": "out",
|
||||
"sourceMap": true
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue