Skip to content

Commit

Permalink
add exclude list
Browse files Browse the repository at this point in the history
  • Loading branch information
derekvmcintire committed Jan 15, 2025
1 parent 20d36e9 commit 7761e69
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions heat-stack/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"extends": ["@epic-web/config/typescript"], // Uses a shared TypeScript configuration provided by the @epic-web package as the base.
"compilerOptions": {
"target": "ES2020", // Compile TypeScript code to ECMAScript 2018.
"target": "ES2018", // Compile TypeScript code to ECMAScript 2018.
"lib": ["DOM", "DOM.Iterable", "ESNext"], // Includes type definitions for the DOM, DOM iterables, and modern ECMAScript features.
"allowJs": true, // Enables the inclusion of .js files in the project.
"skipLibCheck": true, // Skip type checking of all declaration files (*.d.ts).
"noUncheckedIndexedAccess": true,
"allowImportingTsExtensions": true,
// "noUncheckedIndexedAccess": true,
// "allowImportingTsExtensions": true,
"esModuleInterop": true, // Enables compatibility with CommonJS modules.
"allowSyntheticDefaultImports": true, // Allows default imports from modules with no default export.
"strict": true, // Enables all strict type-checking options.
Expand All @@ -26,5 +26,8 @@
"./types/icon-name.d.ts" // icon-name.d.ts file in the types directory.
]
}
}
},
"exclude": [
"build"
]
}

0 comments on commit 7761e69

Please sign in to comment.