WIP: start converting eleventy config to TS

This commit is contained in:
2025-06-02 09:52:58 -04:00
parent 06e09365fd
commit d6f44ba93b
3 changed files with 368 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsx ./node_modules/.bin/eleventy --config eleventy.config.ts --formats 11ty.tsx"
},
"keywords": [],
"author": "",
@@ -17,7 +17,11 @@
"@11ty/eleventy-plugin-rss": "^2.0.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"eleventy-plugin-broken-links": "^2.2.1",
"node-fetch": "^3.3.2",
"opml": "^0.5.7"
},
"type": "module"
"type": "module",
"devDependencies": {
"tsx": "^4.19.3"
}
}