mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
ci: Consistent tsconfig setup for backend packages and fix pnpm typecheck for composite packages (no-changelog) (#9604)
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
committed by
GitHub
parent
84f091d3e5
commit
044607e2a0
@@ -2,8 +2,8 @@ import { t } from '../locale';
|
||||
|
||||
export default {
|
||||
methods: {
|
||||
t(path: string, ...args: string[]) {
|
||||
return t.call(this, path, ...args);
|
||||
t(path: string, options: object) {
|
||||
return t.call(this, path, options);
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
},
|
||||
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
||||
// TODO: remove all options below this line
|
||||
"strict": false,
|
||||
"noImplicitAny": false,
|
||||
"noImplicitReturns": false
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user