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