Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
659 changes: 659 additions & 0 deletions sites/wonderland/blog/2025-12-24-ctf.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sites/wonderland/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"copy-static": "pnpm --filter @handbook/scripts copy-static sites/wonderland/static/common",
"generate-authors": "ts-node --esm scripts/generate-authors.ts",
"generate-authors": "ts-node --project tsconfig.scripts.json scripts/generate-authors.ts",
"test": "jest",
"prebuild": "pnpm generate-authors",
"build:assets": "pnpm --filter @handbook/common-config build && pnpm copy-static && pnpm generate-authors",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions sites/wonderland/tsconfig.scripts.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"include": ["scripts/**/*"],
"exclude": ["node_modules"]
}
Loading