chore: working tsc:full!

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-01-20 11:32:40 +01:00
committed by Patrik Oldsberg
parent d620855bd2
commit bab9637665
2 changed files with 5 additions and 2 deletions
+2 -1
View File
@@ -93,9 +93,10 @@ export async function createConfig(
if (checksEnabled) {
plugins.push(
new ForkTsCheckerWebpackPlugin({
typescript: { configFile: paths.targetTsConfig },
typescript: { memoryLimit: 4000, configFile: paths.targetTsConfig },
}),
new ESLintPlugin({
context: paths.targetPath,
files: ['**', '!**/__tests__/**', '!**/?(*.)(spec|test).*'],
}),
);
+3 -1
View File
@@ -19,7 +19,9 @@ declare namespace NodeJS {
readonly NODE_ENV: 'development' | 'production' | 'test';
}
}
declare module 'fs' {
export interface StatSyncFn {}
}
declare module 'rollup-plugin-image-files' {
export default function image(options?: any): any;
}