Skip to content

Commit

Permalink
chore: format tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmad-kashkoush committed Nov 10, 2024
1 parent 4cbe256 commit 0b76cde
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
"compilerOptions": {
"target": "es2016", // Specify ECMAScript target version.
"module": "ESNext", // Set module system to CommonJS for Node.js compatibility.
"lib": [
"dom",
"dom.iterable",
"esnext"
], // Include standard library files for DOM and ESNext features.
"lib": ["dom", "dom.iterable", "esnext"], // Include standard library files for DOM and ESNext features.
"jsx": "react-jsx", // Use React JSX transform.
"allowSyntheticDefaultImports": true, // Allow default imports even if module doesn't have a default export.
"esModuleInterop": true, // Enables compatibility between CommonJS and ES modules.
Expand All @@ -17,11 +13,6 @@
"resolveJsonModule": true, // Enable importing of .json files.
"isolatedModules": true // Ensure each file can be transpiled in isolation.
},
"include": [
"src"
], // Specify the root folders for your files.
"exclude": [
"node_modules",
"dist"
] // Exclude unnecessary folders.
"include": ["src"], // Specify the root folders for your files.
"exclude": ["node_modules", "dist"] // Exclude unnecessary folders.
}

0 comments on commit 0b76cde

Please sign in to comment.