Skip to content

Commit

Permalink
Fix outdir in tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kantp committed Nov 19, 2024
1 parent ec9fcf9 commit 48e7310
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["DOM", "ES2022"],
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"outDir": "target",
"resolveJsonModule": true,
"skipLibCheck": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"typeRoots": ["node_modules/@types"],

"rootDir": ".",
"outDir": "dist",
"baseUrl": ".", // affects where output files end up
"target": "es2021", // goal: ship *the most modern syntax* that is supported by *all* browsers that support our Wasm
"module": "nodenext", // allow top-level await
Expand Down

0 comments on commit 48e7310

Please sign in to comment.