Skip to content

Commit

Permalink
Upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Sep 13, 2024
1 parent f8c78c2 commit 8499f4b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
node_modules
.vscode/*.code-snippets
tsconfig.temp.json
*.prompt.*
dist
*.tsbuildinfo
*.tsbuildinfo
*.prompt.*
.vscode/*.code-snippets
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"explorer.sortOrder": "mixed",
"typescript.enablePromptUseWorkspaceTsdk": true,
"github.copilot.enable": {
"*": false,
},
"explorer.sortOrder": "mixed",
}
8 changes: 7 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@
"excludePackagePatterns": [
"typescript",
"vitest",
"@total-typescript/exercise-cli"
"jsdom",
"prettier",
"vite-tsconfig-paths",
"react",
"@types/react",
"@total-typescript/exercise-cli",
"zod"
],
"enabled": false
}
Expand Down
3 changes: 0 additions & 3 deletions scripts/setup.ts

This file was deleted.

2 changes: 0 additions & 2 deletions vite.config.ts → vite.config.mts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";
import path from "path";

export default defineConfig({
test: {
include: ["src/**/*{problem,solution,explainer}*.{ts,tsx}"],
setupFiles: [path.resolve(__dirname, "scripts/setup.ts")],
passWithNoTests: true,
environment: "jsdom",
},
Expand Down

0 comments on commit 8499f4b

Please sign in to comment.