mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
chore: release with declaration maps
This commit is contained in:
8
.gitignore
vendored
8
.gitignore
vendored
@@ -34,13 +34,9 @@ packages/next-auth/utils
|
||||
packages/next-auth/core
|
||||
packages/next-auth/jwt
|
||||
packages/next-auth/react
|
||||
packages/next-auth/adapters.d.ts
|
||||
packages/next-auth/adapters.js
|
||||
packages/next-auth/index.d.ts
|
||||
packages/next-auth/index.js
|
||||
packages/next-auth/*.d.ts*
|
||||
packages/next-auth/*.js
|
||||
packages/next-auth/next
|
||||
packages/next-auth/middleware.d.ts
|
||||
packages/next-auth/middleware.js
|
||||
|
||||
# Development app
|
||||
apps/dev/src/css
|
||||
|
||||
@@ -50,20 +50,18 @@
|
||||
"lint": "eslint src config tests"
|
||||
},
|
||||
"files": [
|
||||
"lib",
|
||||
"client",
|
||||
"core",
|
||||
"css",
|
||||
"jwt",
|
||||
"react",
|
||||
"lib",
|
||||
"next",
|
||||
"client",
|
||||
"providers",
|
||||
"core",
|
||||
"index.d.ts",
|
||||
"index.js",
|
||||
"adapters.d.ts",
|
||||
"middleware.d.ts",
|
||||
"middleware.js",
|
||||
"utils"
|
||||
"react",
|
||||
"src",
|
||||
"utils",
|
||||
"*.d.ts*",
|
||||
"*.js"
|
||||
],
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,9 +1,14 @@
|
||||
{
|
||||
"extends": "@next-auth/tsconfig/tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"declarationMap": true,
|
||||
"emitDeclarationOnly": true,
|
||||
"strictNullChecks": true,
|
||||
"lib": ["dom", "dom.iterable", "esnext"],
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"allowJs": true,
|
||||
"strict": false,
|
||||
"module": "esnext",
|
||||
@@ -17,11 +22,19 @@
|
||||
"outDir": ".",
|
||||
"rootDir": "src",
|
||||
"paths": {
|
||||
"next": ["node_modules/next"],
|
||||
"react": ["node_modules/react"]
|
||||
"next": [
|
||||
"node_modules/next"
|
||||
],
|
||||
"react": [
|
||||
"node_modules/react"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*", "tests/**/*", "config/**/*"],
|
||||
"include": [
|
||||
"src/**/*",
|
||||
"tests/**/*",
|
||||
"config/**/*"
|
||||
],
|
||||
"exclude": [
|
||||
"./*.js",
|
||||
"./*.d.ts",
|
||||
@@ -30,4 +43,4 @@
|
||||
"./coverage",
|
||||
"./**/__test__"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user