Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
fix: created initial tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusbegby committed Aug 26, 2023
1 parent ef76e9c commit 40bf9d9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "ES2020", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"outDir": "./dist", // Output directory for compiled files
"rootDir": "./src", // Root directory of source files
"strict": true, // Enable strict type-checking options
"esModuleInterop": true, // Enables ES module interop
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file
},
"include": ["src/**/*.ts"], // Source files to be compiled
"exclude": ["node_modules"] // Exclude node_modules from compilation
}

0 comments on commit 40bf9d9

Please # to comment.