mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-17 13:17:33 -04:00
453cb9d509
* Updated the quickstart to use the new 1.0 API * Ran prettier * Updated CSS * Removed server code * Moved out of the client dir * Updated lockfile * Added new workflow * Small fixes * Updated PR template * Ran prettier * Fixes to workflwo * Workflow fixes * Fixes the toolchain thing * Added SpacetimeDB integration test * Fix workflow hopefully * Fix workflow * Prettier * Updated pull request template to better reflect the reality * Fixed path in workflow * Prettier after codegen * Regenerate * Say yes to deleting data * Updated codegen to latest master of SpacetimeDB * debug actions * Formatting * add README steps * Ran lints --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
25 lines
593 B
JSON
25 lines
593 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|