mirror of
https://github.com/danbulant/jose
synced 2026-05-19 04:18:52 +00:00
BREAKING CHANGE: All module named exports have moved from subpaths to
just "jose". For example, `import { jwtVerify } from 'jose/jwt/verify'`
is now just `import { jwtVerify } from 'jose'`.
BREAKING CHANGE: All submodule default exports and named have been
removed in favour of just "jose" named exports.
14 lines
275 B
JSON
14 lines
275 B
JSON
{
|
|
"files": [
|
|
"../src/index.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"lib": ["ES6", "DOM"],
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"sourceMap": false,
|
|
"removeComments": true
|
|
}
|
|
}
|