Skip to content

Commit

Permalink
chore: improve tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
orochaa committed Dec 15, 2024
1 parent 4c98bd2 commit 33a08b2
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"compilerOptions": {
"noEmit": true,
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"paths": {
"@clack/core": ["./packages/core/src"]
}
},
"include": ["packages"]
"compilerOptions": {
"noEmit": true,
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Bundler",
"moduleDetection": "force",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"lib": ["ES2022"],
"paths": {
"@clack/core": ["./packages/core/src"]
}
},
"include": ["packages"]
}

0 comments on commit 33a08b2

Please sign in to comment.