From 619c60f7837bc7ca5d250088ea7a335bebc92d06 Mon Sep 17 00:00:00 2001 From: Sam Mayer Date: Thu, 6 Mar 2025 14:04:24 -0600 Subject: [PATCH] Add .js files to config prior to migrating them to .ts --- tsconfig.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index f6677d48..5893989e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "allowJs": true, "allowSyntheticDefaultImports": true, "declaration": true, "declarationMap": true, @@ -10,11 +11,20 @@ "moduleResolution": "node", "outDir": "dist", "resolveJsonModule": true, - "rootDir": "src", "strict": true, "target": "ES2022", "useUnknownInCatchVariables": false }, - "include": ["src/**/*.ts"], + "include": [ + "src/**/*.ts", + "integration/**/*.ts", + ".github/workflows/pepr-excellent-examples-matrix.js", + "config/commitlint.config.js", + "commitlint.config.js", + "coverage/lcov-report/block-navigation.js", + "coverage/lcov-report/prettify.js", + "coverage/lcov-report/sorter.js", + "scripts/set-version.js" + ], "exclude": ["node_modules", "dist", "fixtures", "src/templates", "pepr-test-module"] }