build(stencil): initialize stencil workspace

This commit is contained in:
2026-07-12 13:43:50 +02:00
parent 8e38146cb0
commit ff9d18610c
19 changed files with 526 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
"lib": [
"dom",
"es2022"
],
"moduleResolution": "bundler",
"module": "esnext",
"target": "es2022",
"noUnusedLocals": true,
"noUnusedParameters": true,
"rootDir": "./",
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "h.Fragment",
"types": [
"@stencil/vitest/globals"
]
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}