Skip to content

Commit

Permalink
Merge pull request #442 from nextcloud/fix/types
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Jun 22, 2023
2 parents 710fe06 + 485304e commit 708c3ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "2.5.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -d && babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps",
"build:doc": "typedoc",
Expand Down
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"target": "ESNext",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"declarationDir": "./dist",
"strict": true,
"lib": [
"es6",
"dom"
]
}
},
"include": [ "lib/*" ]
}

0 comments on commit 708c3ef

Please sign in to comment.