Skip to content

Commit

Permalink
export tsconfig file & types
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmachuca committed Nov 10, 2024
1 parent 5be26f9 commit 29f6301
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@
"module": "public/esm/QCObjects.mjs",
"browser": "public/browser/QCObjects.js",
"type": "commonjs",
"types": "build/index.d.ts",
"types": "public/types/index.d.ts",
"exports": {
".": {
"require": "./public/cjs/QCObjects.cjs",
"import": "./public/esm/QCObjects.mjs"
"import": "./public/esm/QCObjects.mjs",
"types": "./public/types/index.d.ts"
},
"./types/*": "./types/*",
"./package.json": "./package.json"
"./package.json": "./package.json",
"./tsconfig.json": "./tsconfig.json",
"./tsconfig.d.json": "./tsconfig.d.json",
"./tsconfig.jasmine.json": "./tsconfig.jasmine.json"
},
"license": "LGPL-3.0",
"scripts": {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.d.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"noImplicitThis": true,
"alwaysStrict": true,
"rootDir": "./src",
"outFile": "build/index.d.ts",
"outFile": "public/types/index.d.ts",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"declaration": true,
Expand Down

0 comments on commit 29f6301

Please sign in to comment.