Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"name": "react-signature-canvas",
"version": "1.1.0-alpha.1",
"description": "A React wrapper component around signature_pad. 100% test coverage, types, examples, & more. Unopinionated and heavily updated fork of react-signature-pad",
"source": "src/index.tsx",
"main": "dist/index.umd.min.js",
"module": "dist/index.mjs",
"source": "./src/index.tsx",
"main": "./dist/index.umd.min.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"require": "./dist/index.umd.min.js",
"default": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"typings": "dist/index.d.ts",
"files": [
"src/",
"dist/"
"./src/",
"./dist/"
],
"author": "Anton Gilgur",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// tsconfig.json is used for type-checking _all_ files, tsconfig.build.json is just used for the build
"extends": "./tsconfig.json",
// allowlist of files to build
"files": ["src/index.tsx", "typings/trim-canvas.d.ts"],
"files": ["src/index.tsx", "types/trim-canvas.d.ts"],
"compilerOptions": {
// override the base
"noEmit": false,
Expand Down
File renamed without changes.