我正在使用NextJS的Typescript,我无法构建应用程序,因为它与auth 0/nextjs-auth 0有一些问题
这就是问题所在。如果我安装了这个,它会一直检查auth 0/nextjs-auth 0包中的问题。
错误https://imgur.com/a/y7ft7Dq
这是我的tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": [
"es6",
"es7",
"esnext",
"dom"
],
"allowJs": true, /* Allow javascript files to be compiled. */// "checkJs": true, /* Report errors in .js files. */
"jsx": "preserve", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"removeComments": false,
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"strictNullChecks": true, /* Enable strict null checks. */
"strictFunctionTypes": true, /* Enable strict checking of function types. */
"strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. *//* Additional Checks */
"noUnusedLocals": true, /* Report errors on unused locals. */
"noUnusedParameters": true, /* Report errors on unused parameters. */
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. *//* Module Resolution Options */
"moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
"baseUrl": ".", /* Type declaration files to be included in compilation. */
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Specify the location where debugger should locate map files instead of generated locations. */
"inlineSourceMap": true,
"inlineSources": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"declarationDir": "./node_modules/@auth0/nextjs-auth0/src/auth0-session",
"declarationMap": true
},
"include": [
"pages"
],
"exclude": [
"node_modules"
]
}
6条答案
按热度按时间bfrts1fy1#
运行以下命令,尝试错误消息所述的操作:
如果不起作用,请尝试删除node_modules,然后运行
npm install
或yarn
f4t66c6m2#
我建议你看看official example。我在auth0 embed中遇到了类似的问题。不要忘记你需要将你的
<Component>
嵌入到app.js
中,以使auth0在页面上工作+使用withAuthRequired
xeufq47z3#
检查你的“tsconfig.json”文件中是否有编译选项“exclude”。如果不存在,只需添加它并排除“node_modules”。
y53ybaqx4#
删除node-modules和package.lock.json,然后删除
npm install
。如果问题没有解决,请使用此版本:我在我的投资组合网页中使用这个软件包,我没有遇到任何问题。这可能是新版本中的一个错误
9fkzdhlc5#
也许这对有同样问题的人会有帮助。在我的情况下,这是一个错误的导入(自动完成),它从src目录中获取了会话。
import { Session } from '@auth0/nextjs-auth0/src/session';
eblbsuwk6#
尝试下一个auth,它更流畅。在Server.js中定义提供程序
App.js
Index.js
创建一个. env.local并添加您的提供程序客户端ID和机密。