Skip to content

Commit

Permalink
Merge pull request #612 from jvalue/add-dts-files
Browse files Browse the repository at this point in the history
Add dts files to build
  • Loading branch information
joluj authored Jul 31, 2024
2 parents 7a512a1 + 43aaa95 commit 2c7ffe2
Show file tree
Hide file tree
Showing 9 changed files with 401 additions and 391 deletions.
3 changes: 2 additions & 1 deletion apps/docs-generator/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"dependsOn": ["generate-language-server"],
"options": {
"main": "{projectRoot}/src/main.ts",
"tsConfig": "{projectRoot}/tsconfig.app.json"
"tsConfig": "{projectRoot}/tsconfig.app.json",
"external": []
}
},
"start": {
Expand Down
3 changes: 2 additions & 1 deletion apps/interpreter/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"targets": {
"build": {
"options": {
"tsConfig": "{projectRoot}/tsconfig.app.json"
"tsConfig": "{projectRoot}/tsconfig.app.json",
"external": []
}
},
"lint": {
Expand Down
3 changes: 2 additions & 1 deletion apps/language-server-web-worker/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"generatePackageJson": true,
"platform": "browser",
"vendorChunk": false,
"runtimeChunk": false
"runtimeChunk": false,
"external": []
}
},
"serve": {
Expand Down
3 changes: 2 additions & 1 deletion libs/execution/package.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"name": "@jvalue/jayvee-execution"
"name": "@jvalue/jayvee-execution",
"types": "./libs/execution/src/index.d.ts"
}
1 change: 1 addition & 0 deletions libs/interpreter-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"type": "git",
"url": "https://github.com/jvalue/jayvee.git"
},
"types": "./libs/interpreter-lib/src/index.d.ts",
"homepage": "https://github.com/jvalue/jayvee",
"publishConfig": {
"access": "public",
Expand Down
1 change: 1 addition & 0 deletions libs/language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"type": "git",
"url": "https://github.com/jvalue/jayvee.git"
},
"types": "./libs/language-server/src/index.d.ts",
"homepage": "https://github.com/jvalue/jayvee",
"publishConfig": {
"access": "public",
Expand Down
6 changes: 5 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@
"output": "/"
}
],
"generatePackageJson": true
"generatePackageJson": true,
"declaration": true,
"external": [
"@jvalue/jayvee-language-server"
]
},
"configurations": {
"development": {
Expand Down
Loading

0 comments on commit 2c7ffe2

Please sign in to comment.