Skip to content

Commit

Permalink
Adds protonode package scafolding
Browse files Browse the repository at this point in the history
  • Loading branch information
ap0k4 committed Jul 6, 2024
1 parent 7bdd988 commit d0c60bd
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protobase/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
Expand Down
17 changes: 17 additions & 0 deletions packages/protonode/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "protonode",
"version": "1.0.0",
"description": "Protofy library with node technologies",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
},
"files": [
"dist"
],
"devDependencies": {
"typescript": "~5.3.3"
}
}
1 change: 1 addition & 0 deletions packages/protonode/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const test = 1
16 changes: 16 additions & 0 deletions packages/protonode/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "esnext"],
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}
8 changes: 8 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -25364,6 +25364,14 @@ __metadata:
languageName: unknown
linkType: soft

"protonode@workspace:packages/protonode":
version: 0.0.0-use.local
resolution: "protonode@workspace:packages/protonode"
dependencies:
typescript: "npm:~5.3.3"
languageName: unknown
linkType: soft

"proxy-addr@npm:~2.0.7":
version: 2.0.7
resolution: "proxy-addr@npm:2.0.7"
Expand Down

0 comments on commit d0c60bd

Please sign in to comment.