Skip to content

Commit 8583943

Browse files
committed
Upgrades
1 parent 8c8ec3d commit 8583943

File tree

6 files changed

+18
-78
lines changed

6 files changed

+18
-78
lines changed

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
node_modules
2-
.vscode
3-
tsconfig.temp.json
2+
tsconfig.temp.json
3+
dist
4+
*.tsbuildinfo
5+
*.prompt.*
6+
.vscode/*.code-snippets

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib",
3+
"typescript.enablePromptUseWorkspaceTsdk": true,
4+
"github.copilot.enable": {
5+
"*": false,
6+
},
7+
"explorer.sortOrder": "mixed",
8+
}

plan.json

Lines changed: 0 additions & 70 deletions
This file was deleted.

renovate.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77
"excludePackagePatterns": [
88
"typescript",
99
"vitest",
10+
"jsdom",
11+
"prettier",
12+
"vite-tsconfig-paths",
1013
"react",
1114
"@types/react",
12-
"@total-typescript/exercise-cli"
15+
"@total-typescript/exercise-cli",
16+
"zod"
1317
],
1418
"enabled": false
1519
}

scripts/setup.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

vite.config.ts renamed to vite.config.mts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import { defineConfig } from "vitest/config";
22
import tsconfigPaths from "vite-tsconfig-paths";
3-
import path from "path";
43

54
export default defineConfig({
65
test: {
76
include: ["src/**/*{problem,solution,explainer}*.{ts,tsx}"],
8-
setupFiles: [path.resolve(__dirname, "scripts/setup.ts")],
97
passWithNoTests: true,
108
environment: "jsdom",
119
},

0 commit comments

Comments
 (0)