Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfiala committed Dec 1, 2023
0 parents commit f54ea4f
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package-lock.json
node_modules
dist/*
Empty file added dist/.gitkeep
Empty file.
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "badversions",
"version": "1.0.0",
"scripts": {
"build": "tsc"
},
"devDependencies": {
"@grpc/grpc-js": "1.9.12",
"typescript": "5.3.2"
}
}
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { Server } from '@grpc/grpc-js';
const x = new Server();
console.log('hello', x);
12 changes: 12 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"lib": ["es2022"],
"outDir": "dist",
"target": "ES2022",
"module": "esnext",
"moduleResolution": "bundler",
"esModuleInterop": true,
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}

0 comments on commit f54ea4f

Please sign in to comment.