Skip to content

Commit

Permalink
Add .js files to config prior to migrating them to .ts
Browse files Browse the repository at this point in the history
  • Loading branch information
samayer12 committed Mar 6, 2025
1 parent 5234154 commit 619c60f
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationMap": true,
Expand All @@ -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"]
}

0 comments on commit 619c60f

Please sign in to comment.