From 36ed7befbfcc89b41947bbe0f63ada33d099e4fe Mon Sep 17 00:00:00 2001 From: Jacob Smith <3012099+JakobJingleheimer@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:36:13 +0100 Subject: [PATCH] tools: enable type checking within the `internal/modules` directory --- lib/internal/modules/tsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lib/internal/modules/tsconfig.json diff --git a/lib/internal/modules/tsconfig.json b/lib/internal/modules/tsconfig.json new file mode 100644 index 00000000000000..c74105f1fc70c2 --- /dev/null +++ b/lib/internal/modules/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "declaration": true, + "emitDeclarationOnly": true, + }, + "include": [ + "./", + "../../../typings", + ] +}