Initial commit

This commit is contained in:
Devin Zuczek
2026-06-08 18:23:40 -04:00
commit 8e644a5c20
141 changed files with 21414 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"include": ["${configDir}/**/*.ts", "${configDir}/**/*.tsx"],
"exclude": ["${configDir}/node_modules/", "${configDir}/dist/", "${configDir}/oxlint.config.ts"],
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": false,
"isolatedModules": true,
"moduleResolution": "bundler",
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"noImplicitOverride": true,
"strict": true,
"noEmit": true,
"resolveJsonModule": true
}
}
+8
View File
@@ -0,0 +1,8 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"module": "es2022",
"target": "es2022"
}
}
+6
View File
@@ -0,0 +1,6 @@
{
"name": "@repo/typescript-config",
"version": "0.1.0",
"private": true,
"sideEffects": false
}
+14
View File
@@ -0,0 +1,14 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Tools",
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"noFallthroughCasesInSwitch": true
}
}
@@ -0,0 +1,9 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@repo/typescript-config/workers.json",
"include": ["${configDir}/**/*.ts", "${configDir}/**/*.tsx"],
"exclude": ["${configDir}/node_modules/", "${configDir}/dist/", "${configDir}/oxlint.config.ts"],
"compilerOptions": {
"types": ["@cloudflare/workers-types", "@cloudflare/vitest-pool-workers/types"]
}
}
+33
View File
@@ -0,0 +1,33 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"include": [
"${configDir}/worker-configuration.d.ts",
"${configDir}/env.d.ts",
"${configDir}/**/*.ts",
"${configDir}/**/*.tsx"
],
"exclude": [
"${configDir}/node_modules/",
"${configDir}/dist/",
"${configDir}/**/opensrc/",
"${configDir}/oxlint.config.ts"
],
"compilerOptions": {
"target": "es2022",
"lib": ["ESNext"],
"jsx": "react",
"module": "es2022",
"moduleResolution": "bundler",
"types": ["./worker-configuration.d.ts", "@cloudflare/vitest-pool-workers/types"],
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"noEmit": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"skipLibCheck": true
}
}