问题
我似乎无法让 MSAL 库正确导入到我的打字稿代码中。我在使用带有 react-typescript 脚本的 create-react-app 搭建的简单 typescript/react 项目中使用MSAL for JS库(应该有类型)。我是 typescript 的新手,不确定我是否遗漏了一些明显的东西,或者在将 MSAL 包与 typescript 项目一起使用时是否存在问题。
细节:
- 我从 NPM 添加了 MSAL 包,使用
npm install --save msal
. - 我尝试使用不同形式的将 MSAL 导入到我的 .ts
import {Msal} from 'msal';
- 这会导致打字稿错误
Could not find a declaration file for module 'msal'. '<path>/node_modules/msal/out/msal.js' implicitly has an 'any' type.
- 觉得这很奇怪,我查看了 node_module/msal/out 文件夹并看到了一个“msal.d.ts”文件,这正是我所期望的。
- 当我查看msal.d.ts文件的内容时,我看不到任何我通常希望看到的导出。
- 我尝试使用 @types 安装声明
npm install --save-dev @types/msal
,但它不存在。 - 我也尝试使用 将它导入我的文件
let Msal = require('Msal');
,但得到一个错误,即 Msal.UserAgentApplication 不是构造函数。 - 尝试使用 /// 参考指令并将脚本标记添加到主 index.html 时,我没有太多运气。这也不是解决问题的正确方法。
示例Msal.ts
import { observable, action, computed } from 'mobx';
import * as Msal from 'msal'; // <-- This line gives the error
class ExampleMsal{
@observable
private _isLoggedIn: boolean;
constructor() {
this._isLoggedIn = false;
}
@computed
get isLoggedIn(): boolean {
return this._isLoggedIn;
}
@action
signIn() {
let userAgentApplication = new Msal.UserAgentApplication('<client-id>', null,
function (errorDes: string, token: string, error: string, tokenType: string) {
// this callback is called after loginRedirect OR acquireTokenRedirect
// (not used for loginPopup/aquireTokenPopup)
}
);
userAgentApplication.loginPopup(['user.read']).then(function(token: string) {
let user = userAgentApplication.getUser();
if (user) {
// signin successful
alert('success');
} else {
// signin failure
alert('fail');
}
}, function (error: string) {
// handle error
alert('Error' + error);
});
this._isLoggedIn = true;
}
@action
signOut() {
this._isLoggedIn = false;
}
}
export default ExampleMsal;
tsconfig.json
{
"compilerOptions": {
"outDir": "build/dist",
"module": "commonjs",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"experimentalDecorators": true
},
"exclude": [
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
],
"types": [
"typePatches"
]
}