Skip to content

Commit

Permalink
Add tsconfig.json configuration file
Browse files Browse the repository at this point in the history
This newly added tsconfig.json file extends configurations from two existing templates and allows JavaScript files. It includes all files in the 'test' directory and 'src' directory, as well as the 'index.d.ts' file. This ensures a consistent TypeScript setup for the project.
  • Loading branch information
suddenlyGiovanni committed Jul 2, 2024
1 parent dbeddf3 commit b5ad46b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"extends": ["@tsconfig/node22/tsconfig.json", "@tsconfig/strictest/tsconfig.json"],
"compilerOptions": {
"allowJs": true
},
"include": [
"test/**/*",
"src"
],
"files": [
"index.d.ts"
]
}

0 comments on commit b5ad46b

Please sign in to comment.