Fix type imports

This commit is contained in:
Marcel Mraz 2025-03-27 10:04:47 +01:00
parent 432a46ef9e
commit f7b226270f
No known key found for this signature in database
GPG key ID: 4EBD6E62DC830CD2
11 changed files with 33 additions and 11 deletions

View file

@ -12,7 +12,7 @@
"default": "./dist/prod/index.js"
},
"./*": {
"types": "./../math/dist/types/math/*"
"types": "./../math/dist/types/math/src/*.d.ts"
}
},
"files": [

View file

@ -2,5 +2,7 @@
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist/types"
}
},
"include": ["src/**/*", "global.d.ts"],
"exclude": ["**/*.test.*", "tests", "types", "examples", "dist"]
}