-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
571cb9d
commit 23504e5
Showing
3 changed files
with
51 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"compilerOptions": { | ||
"strict": false, // Disable strict type checking globally | ||
"skipLibCheck": true, // Skip type checking for library files | ||
"noImplicitAny": false, // Allow implicit 'any' types | ||
"outDir": "./dist", // Output directory for compiled files | ||
"rootDir": "./src", // Root directory for source files | ||
"declaration": true, // Generate .d.ts type declaration files | ||
"declarationMap": true, // Generate .d.ts.map files for debugging | ||
"esModuleInterop": true, // Enable compatibility with CommonJS modules | ||
"module": "commonjs", // CommonJS module system | ||
"target": "es2017", // Set target to ES2017 to support Object.entries | ||
"lib": [ | ||
"es2017", | ||
"dom" | ||
] // Include ES2017 libraries for compatibility | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"dist", | ||
"src/generated" // Exclude generated files to avoid type-checking them | ||
] | ||
} |