chore: remove unrelated tsconfig changes

This commit is contained in:
LukeParkerDev 2026-04-06 13:25:59 +10:00
parent df5ee28421
commit 2d676d54e3
6 changed files with 27 additions and 29 deletions

View file

@ -14,9 +14,7 @@
"devDependencies": {
"@actions/artifact": "5.0.1",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/mime-types": "3.0.1",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"glob": "13.0.5",
"husky": "9.1.7",

View file

@ -1,8 +1,29 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"types": ["node", "bun"]
},
"include": ["./index.ts", "./sst-env.d.ts"]
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"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,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
}
}

View file

@ -1,8 +0,0 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"types": ["node", "bun"]
},
"include": ["./**/*.ts"]
}

View file

@ -76,9 +76,7 @@
"devDependencies": {
"@actions/artifact": "5.0.1",
"@tsconfig/bun": "catalog:",
"@types/bun": "catalog:",
"@types/mime-types": "3.0.1",
"@types/node": "catalog:",
"@typescript/native-preview": "catalog:",
"glob": "13.0.5",
"husky": "9.1.7",

View file

@ -1,8 +0,0 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"types": ["node", "bun"]
},
"include": ["./**/*.ts"]
}

View file

@ -1,8 +1,5 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@tsconfig/bun/tsconfig.json",
"compilerOptions": {
"types": ["node"]
},
"include": ["sst.config.ts", "sst-env.d.ts", "infra/**/*.ts"]
"compilerOptions": {}
}