Remove TypeScript files created by Bun

This commit is contained in:
Helen Chong 2024-05-22 18:07:08 +08:00
parent 662c648f1d
commit c19fc79c20
3 changed files with 0 additions and 29 deletions

View File

@ -1 +0,0 @@
console.log("Hello via Bun!");

View File

@ -1,6 +1,5 @@
{
"name": "neocities-leilukin",
"module": "index.ts",
"scripts": {
"start": "bunx @11ty/eleventy --serve --quiet",
"build": "bunx @11ty/eleventy"

View File

@ -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
}
}