import react-admin 中断 tsc build
import react-admin breaks tsc build
我使用带有打字稿的 React admin。
我更喜欢使用 strict
类型检查。所以当我 运行 tsc
时,反应管理员向我显示 implicitly any
错误。
尽管我使用了 "skipLibCheck": true
,但是错误来了。我该如何解决?
node_modules/ra-core/src/auth/useCheckAuth.ts:101:26 - error TS7006: Parameter 'error' implicitly has an 'any' type.
101 const getErrorMessage = (error, defaultMessage) =>
~~~~~
下面是我的 tsconfig 文件。
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"paths": {
"@components/*": ["components/*"],
"@styles/*": ["styles/*"],
"@lib/*": ["lib/*"],
"@pages/*": ["pages/*"]
}
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}
我在我的代码库中发现了一个问题,这是罪魁祸首。
import {
CreateResult,
DeleteResult,
GetListResult,
GetManyReferenceResult,
GetManyResult,
GetOneResult,
UpdateResult,
} from 'ra-core/src/types';
如果我像上面那样从 'ra-core/src/types' 导入 pkgs,它会抛出 ts 错误。
您可以通过从 'ra-core' 导入包来修复它,如下所示。
import {
CreateResult,
DeleteResult,
GetListResult,
GetManyReferenceResult,
GetManyResult,
GetOneResult,
UpdateResult,
} from 'ra-core';
我使用带有打字稿的 React admin。
我更喜欢使用 strict
类型检查。所以当我 运行 tsc
时,反应管理员向我显示 implicitly any
错误。
尽管我使用了 "skipLibCheck": true
,但是错误来了。我该如何解决?
node_modules/ra-core/src/auth/useCheckAuth.ts:101:26 - error TS7006: Parameter 'error' implicitly has an 'any' type.
101 const getErrorMessage = (error, defaultMessage) =>
~~~~~
下面是我的 tsconfig 文件。
{
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"paths": {
"@components/*": ["components/*"],
"@styles/*": ["styles/*"],
"@lib/*": ["lib/*"],
"@pages/*": ["pages/*"]
}
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}
我在我的代码库中发现了一个问题,这是罪魁祸首。
import {
CreateResult,
DeleteResult,
GetListResult,
GetManyReferenceResult,
GetManyResult,
GetOneResult,
UpdateResult,
} from 'ra-core/src/types';
如果我像上面那样从 'ra-core/src/types' 导入 pkgs,它会抛出 ts 错误。
您可以通过从 'ra-core' 导入包来修复它,如下所示。
import {
CreateResult,
DeleteResult,
GetListResult,
GetManyReferenceResult,
GetManyResult,
GetOneResult,
UpdateResult,
} from 'ra-core';