Skip to content

Commit

Permalink
chore: restore common tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
hussedev committed Sep 26, 2024
1 parent bfcd552 commit ba80374
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions packages/common/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
{
"extends": "../../tsconfig.json",
"include": ["src/*"],
"compilerOptions": {
"target": "es2020",
"lib": ["dom", "dom.iterable", "esnext"],
"outDir": "dist",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"declarationMap": true,
"sourceMap": true,
"declaration": true,
"outDir": "dist"
"incremental": true
},
"include": ["src/*"]
}
}

0 comments on commit ba80374

Please sign in to comment.