Signal only WIP

This commit is contained in:
Darren Clarke 2025-10-15 17:09:56 +02:00
parent d9130fbaa2
commit 6288df7cf6
11 changed files with 676 additions and 1596 deletions

View file

@ -1,11 +1,15 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"noEmit": false,
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
@ -24,5 +28,5 @@
]
},
"include": ["**.d.ts", "**/*.ts", "**/*.tsx", "**/*.png, **/*.svg"],
"exclude": ["node_modules", "babel__core"]
"exclude": ["node_modules", "babel__core", "dist"]
}