2022-05-18 07:26:57 +00:00
|
|
|
{
|
2022-10-25 14:12:43 +00:00
|
|
|
"extends": "../../../tsconfig.json",
|
2022-05-18 07:26:57 +00:00
|
|
|
"compilerOptions": {
|
2022-10-25 14:12:43 +00:00
|
|
|
"target": "esnext",
|
2024-12-27 10:06:52 +00:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
2024-05-17 12:30:10 +00:00
|
|
|
"useDefineForClassFields": true,
|
2022-05-18 07:26:57 +00:00
|
|
|
"allowJs": true,
|
2022-07-08 09:18:33 +00:00
|
|
|
"strict": true,
|
2022-05-18 07:26:57 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"module": "esnext",
|
2024-05-17 12:30:10 +00:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
2022-05-18 07:26:57 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2024-05-17 12:30:10 +00:00
|
|
|
"jsx": "react-jsx",
|
2024-05-02 15:22:20 +00:00
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "@0no-co/graphqlsp",
|
|
|
|
|
"schema": "../../../schema.graphql",
|
|
|
|
|
"disableTypegen": true,
|
|
|
|
|
"templateIsCallExpression": true,
|
|
|
|
|
"template": "graphql"
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
2025-11-11 21:20:31 +00:00
|
|
|
"include": ["src", "tailwind.config.ts", "tailwind.d.ts"],
|
2022-05-18 07:26:57 +00:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|