Files
linea-monorepo/tsconfig.json
kyzooghost d27699e452 [WIP - Tech Debt] Typescript config cleanup (#1073)
* initial tsconfig.json consolidation

* consolidate skipLibCheck

* more consolidate tsconfig.json

* remove strict duplicates

* remove strict duplicates

* removed lib

* more changes

* more changes

* more changes

* centralize noEmit

* run pnpm dedupe

* catalog for ethers and dotenv

* Revert "catalog for ethers and dotenv"

This reverts commit 8fc18db1c6f754ecbf1b175b34f6ebf08837068a.

* first catalog

* added more dependencies to catalog

* apply catalog to many dev dependencies

* ethers in catalog

* finetune ethers version

* fixes

* empty
2025-06-03 17:33:42 +10:00

25 lines
628 B
JSON

{
"compilerOptions": {
"outDir": "./dist",
"baseUrl": ".",
"moduleResolution": "node",
"module": "commonjs",
"target": "es2022",
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"skipLibCheck": true,
"isolatedModules": true,
"noErrorTruncation": true,
"exactOptionalPropertyTypes": true,
"noEmit": false
},
"exclude": ["node_modules", "dist", "*.d.ts"]
}