From c19fc79c204670c13dc1d1b7292c9fbe598601bf Mon Sep 17 00:00:00 2001 From: Helen Chong <119173961+helenclx@users.noreply.github.com> Date: Wed, 22 May 2024 18:07:08 +0800 Subject: [PATCH] Remove TypeScript files created by Bun --- index.ts | 1 - package.json | 1 - tsconfig.json | 27 --------------------------- 3 files changed, 29 deletions(-) delete mode 100644 index.ts delete mode 100644 tsconfig.json diff --git a/index.ts b/index.ts deleted file mode 100644 index f67b2c64..00000000 --- a/index.ts +++ /dev/null @@ -1 +0,0 @@ -console.log("Hello via Bun!"); \ No newline at end of file diff --git a/package.json b/package.json index cce9b608..bf8bf262 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,5 @@ { "name": "neocities-leilukin", - "module": "index.ts", "scripts": { "start": "bunx @11ty/eleventy --serve --quiet", "build": "bunx @11ty/eleventy" diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 238655f2..00000000 --- a/tsconfig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "compilerOptions": { - // Enable latest features - "lib": ["ESNext", "DOM"], - "target": "ESNext", - "module": "ESNext", - "moduleDetection": "force", - "jsx": "react-jsx", - "allowJs": true, - - // Bundler mode - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "verbatimModuleSyntax": true, - "noEmit": true, - - // Best practices - "strict": true, - "skipLibCheck": true, - "noFallthroughCasesInSwitch": true, - - // Some stricter flags (disabled by default) - "noUnusedLocals": false, - "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false - } -}