Trading card city builder game?

remove unnecessary javascript configuration

eldridge.cam 11b68a22 f4ced4b2

Waiting for spindle ...
-50
-3
Justfile
··· 23 23 npx concurrently --names "sveltekit,migrate,server" \ 24 24 "npx vite dev --host" \ 25 25 "npx graphile-migrate watch" \ 26 - "cd api && watchexec -e .gleam,.toml,.js,.erl gleam build --target javascript" \ 27 26 "cd server && gleam run" 28 27 29 28 [group: "run"] ··· 31 30 npx concurrently --names "sveltekit,migrate,server,tauri" \ 32 31 "npx vite dev --host" \ 33 32 "npx graphile-migrate watch" \ 34 - "cd api && watchexec -e .gleam,.toml,.js,.erl gleam build --target javascript" \ 35 33 "cd server && gleam run" \ 36 34 "npx tauri dev" 37 35 ··· 67 65 68 66 [group: "release"] 69 67 build: 70 - cd api && gleam build --target javascript 71 68 npx svelte-kit sync 72 69 npx vite build 73 70
-5
api/gleam.toml
··· 1 1 name = "cartography_api" 2 2 version = "1.0.0" 3 - target = "javascript" 4 3 5 4 # Fill out these fields if you intend to generate HTML documentation or publish 6 5 # your project to the Hex package manager. ··· 12 11 # 13 12 # For a full reference of all the available options, you can have a look at 14 13 # https://gleam.run/writing-gleam/gleam-toml/. 15 - 16 - [javascript] 17 - typescript_declarations = true 18 - runtime = "node" 19 14 20 15 [dependencies] 21 16 gleam_stdlib = ">= 0.44.0 and < 2.0.0"
-42
api/tsconfig.json
··· 1 - { 2 - // Visit https://aka.ms/tsconfig to read more about this file 3 - "compilerOptions": { 4 - "noEmit": true, 5 - "outDir": "./build/dev/javascript/", 6 - 7 - // Environment Settings 8 - // See also https://aka.ms/tsconfig/module 9 - "module": "nodenext", 10 - "target": "esnext", 11 - "types": [], 12 - // For nodejs: 13 - // "lib": ["esnext"], 14 - // "types": ["node"], 15 - // and npm install -D @types/node 16 - 17 - // Other Outputs 18 - "sourceMap": true, 19 - "declaration": true, 20 - "declarationMap": true, 21 - 22 - // Stricter Typechecking Options 23 - "noUncheckedIndexedAccess": true, 24 - "exactOptionalPropertyTypes": true, 25 - 26 - // Style Options 27 - // "noImplicitReturns": true, 28 - // "noImplicitOverride": true, 29 - // "noUnusedLocals": true, 30 - // "noUnusedParameters": true, 31 - // "noFallthroughCasesInSwitch": true, 32 - // "noPropertyAccessFromIndexSignature": true, 33 - 34 - // Recommended Options 35 - "strict": true, 36 - "verbatimModuleSyntax": true, 37 - "isolatedModules": true, 38 - "noUncheckedSideEffectImports": true, 39 - "moduleDetection": "force", 40 - "skipLibCheck": true 41 - } 42 - }