This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import globals from "globals"; | |
| import tseslint from "typescript-eslint"; | |
| import { defineConfig } from "eslint/config"; | |
| export default defineConfig([ | |
| ...tseslint.configs.recommended, | |
| { | |
| files: ["**/*.{js,cjs,mjs,ts,cts,mts}"], | |
| languageOptions: { | |
| sourceType: "commonjs", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| "target": "ES2020", | |
| "module": "CommonJS", | |
| "moduleResolution": "Node", | |
| "lib": ["ES2020"], | |
| "rootDir": "src", | |
| "outDir": "dist", | |
| "declaration": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script to set up a new macOS system with the required tools | |
| echo "Starting macOS setup..." | |
| # Check if Homebrew is installed | |
| if ! command -v brew &>/dev/null; then | |
| echo "Homebrew not found. Installing Homebrew..." | |
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |