console/packages/web/app/tsconfig.json
Jonathan Brennan 44cc1d7db1
Upgrade web/app to tailwind v4 (#7490)
Co-authored-by: Dotan Simha <dotansimha@gmail.com>
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Piotr Monwid-Olechnowicz <hasparus@gmail.com>
2026-01-21 05:11:25 -06:00

30 lines
787 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
"useDefineForClassFields": true,
"allowJs": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "../../../schema.graphql",
"disableTypegen": true,
"templateIsCallExpression": true,
"template": "graphql"
}
]
},
"include": ["src"],
"exclude": ["node_modules"]
}