Skip to content

Commit 3eb9c3f

Browse files
committed
Upgrades
1 parent f0726bf commit 3eb9c3f

File tree

6 files changed

+25
-17
lines changed

6 files changed

+25
-17
lines changed

.github/workflows/section-repos.yml

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
branches:
55
- "main"
66

7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
711
jobs:
812
run:
913
runs-on: ubuntu-latest

.gitignore

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,2 @@
11
node_modules
2-
.vscode/*.code-snippets
3-
tsconfig.temp.json
4-
*.prompt.*
5-
dist
6-
*.tsbuildinfo
7-
.twoslash-lint
8-
out
2+
tsconfig.temp.json

.vscode/settings.json

+1-9
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,6 @@
33
"typescript.enablePromptUseWorkspaceTsdk": true,
44
"github.copilot.enable": {
55
"*": false,
6-
"plaintext": false,
7-
"markdown": true,
8-
"scminput": false
96
},
10-
"markdownlint.config": {
11-
"default": false,
12-
"MD001": true,
13-
"MD022": true,
14-
"MD038": true
15-
}
7+
"explorer.sortOrder": "mixed",
168
}

out

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 1d75ed5609335588a83fdd8fb2f1a18472199a1d

renovate.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
"excludePackagePatterns": [
88
"typescript",
99
"vitest",
10-
"@total-typescript/exercise-cli"
10+
"jsdom",
11+
"prettier",
12+
"vite-tsconfig-paths",
13+
"react",
14+
"@types/react",
15+
"@total-typescript/exercise-cli",
16+
"zod"
1117
],
1218
"enabled": false
1319
}

vite.config.mts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { defineConfig } from "vitest/config";
2+
import tsconfigPaths from "vite-tsconfig-paths";
3+
4+
export default defineConfig({
5+
test: {
6+
include: ["src/**/*{problem,solution,explainer}*.{ts,tsx}"],
7+
passWithNoTests: true,
8+
environment: "jsdom",
9+
},
10+
plugins: [tsconfigPaths()],
11+
});

0 commit comments

Comments
 (0)