Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBoyle committed Dec 26, 2024
1 parent 2eef745 commit 17705b8
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions tsconfig.prod.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist"
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": ["ESNext"],
"outDir": "./dist",
"declaration": true,
"sourceMap": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "@",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": [
"src"
]
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "playground"]
}

0 comments on commit 17705b8

Please sign in to comment.