Skip to content

Commit

Permalink
build(tsconfig): migrate to bundler module resolution & enable increm…
Browse files Browse the repository at this point in the history
…ental compilation
  • Loading branch information
ivangabriele committed Mar 1, 2024
1 parent dfa7bfa commit c677f77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tsconfig.dist.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"emitDeclarationOnly": true,
"moduleResolution": "Bundler",
"incremental": false,
"noEmit": false,
"rootDir": "./src"
},
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
"declarationMap": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
"incremental": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "Bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
Expand Down

0 comments on commit c677f77

Please sign in to comment.