diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000..33977c0 Binary files /dev/null and b/bun.lockb differ diff --git a/package.json b/package.json new file mode 100644 index 0000000..ea4d969 --- /dev/null +++ b/package.json @@ -0,0 +1,21 @@ +{ + "type": "module", + "devDependencies": { + "@bauke/eslint-config": "^0.1.5", + "@bauke/prettier-config": "^0.1.5", + "@types/bun": "^1.0.8", + "astro": "^4.4.9", + "sass": "^1.71.1", + "typescript": "^5.3.3", + "xo": "^0.57.0" + }, + "prettier": "@bauke/prettier-config", + "xo": { + "extends": "@bauke/eslint-config", + "prettier": true, + "rules": { + "unicorn/prevent-abbreviations": "off" + }, + "space": true + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..3d26f08 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "allowImportingTsExtensions": true, + "allowJs": true, + "jsx": "react-jsx", + "lib": ["ES2022"], + "module": "ES2022", + "moduleDetection": "force", + "moduleResolution": "bundler", + "noEmit": true, + "noFallthroughCasesInSwitch": true, + "noPropertyAccessFromIndexSignature": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "skipLibCheck": true, + "strict": true, + "target": "ES2022", + "verbatimModuleSyntax": true + } +}