Skip to content

Commit

Permalink
chore: fix typing locations
Browse files Browse the repository at this point in the history
  • Loading branch information
Vtec234 committed Oct 16, 2024
1 parent 882858f commit 276850a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
22 changes: 9 additions & 13 deletions lean4-infoview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@leanprover/infoview",
"version": "0.7.4",
"version": "0.7.5",
"description": "An interactive display for the Lean 4 theorem prover.",
"scripts": {
"watch": "rollup --config --environment NODE_ENV:development --watch",
Expand All @@ -9,20 +9,16 @@
"test": "tsc -p test/tsconfig.json"
},
"exports": {
".": "./dist/index.production.min.js",
"./loader": "./dist/loader.production.min.js",
".": {
"default": "./dist/index.production.min.js",
"types": "./dist/index.d.ts"
},
"./loader": {
"default": "./dist/loader.production.min.js",
"types": "./dist/loader.d.ts"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"loader": [
"dist/loader.d.ts"
]
}
},
"files": [
"dist/*"
],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion vscode-lean4/webview/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"strict": true,
"lib": ["dom", "es6"],
"rootDir": "../",
"sourceMap": true
"sourceMap": true,
"module": "esnext",
"moduleResolution": "bundler"
},
"include": ["./**/*"]
}

0 comments on commit 276850a

Please sign in to comment.