Initial release

This commit is contained in:
2026-03-11 17:24:57 +01:00
commit 5d537975e9
17 changed files with 6635 additions and 0 deletions

19
eslint.config.js Normal file
View File

@@ -0,0 +1,19 @@
import js from '@eslint/js'
import globals from 'globals'
import tseslint from 'typescript-eslint'
import { defineConfig, globalIgnores } from 'eslint/config'
export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
js.configs.recommended,
tseslint.configs.recommended,
],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
},
])