feat: add thymeleaf assets processor

Signed-off-by: Ryan Wang <i@ryanc.cc>
This commit is contained in:
Ryan Wang
2022-07-29 18:06:56 +08:00
parent ceceb37349
commit a46eebfb87
20 changed files with 265 additions and 30 deletions
+6 -1
View File
@@ -1,6 +1,9 @@
{
"compilerOptions": {
// Enable top-level await, and other modern ESM features.
"lib": [
"dom"
],
"target": "ESNext",
"module": "ESNext",
// Enable node-style module resolution, for things like npm package imports.
@@ -10,6 +13,8 @@
// Enable stricter transpilation for better output.
"isolatedModules": true,
// Add type definitions for our Astro runtime.
"types": ["astro/client"]
"types": [
"astro/client"
]
}
}