Tailwind v4 @theme carries the two colour axes as tokens: a deep blue-black ground, per-game hues for identity, and a heat ramp for urgency that is monotonic in salience (dim, blue, amber, red). Co-Authored-By: Claude Opus 5 (1M context) <[email protected]>
21 lines
526 B
JSON
21 lines
526 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["bun-types"],
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "react-jsx",
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src", "test", "scripts"]
|
|
}
|