Я просто пытаюсь прочитать файл с помощью fs.readFileSync
, хотя кажется, что его невозможно найти.
Я убедился, что объявляю его, добавил его в свой конструктор:
export default class Login extends React.Component<LoginProps, {}> {
private webAuth: auth0.WebAuth;
fs: any;
constructor(props: any, context: any) {
super(props, context);
this.fs = require('fs');
this.webAuth = new auth0.WebAuth({
clientID: conf.auth0.clientId,
domain: conf.auth0.domain,
responseType: 'token id_token',
redirectUri: `${window.location.origin}/login`
});
}
[...]
И использовал его в простой функции:
verifyToken = (token) => {
console.log(this.fs);
let contents = this.fs.readFileSync('../utils/public.key', 'utf8');
console.log(contents);
}
Но это вызывает Uncaught TypeError: _this.fs.readFileSync is not a function
. Есть ли специальный способ включить fs
в Typescript?