schon/storefront/tsconfig.json
Egor fureunoir Gorbunov cc8c2245ee Features: 1) Integrated Apollo Client with caching and query merging; 2) Added GraphQL schema for improved API handling;
Fixes: None;

Extra: Removed unused files including layout, page components, and global styling to align with the new GraphQL integration;
2025-06-30 20:18:42 +03:00

30 lines
678 B
JSON

{
"compilerOptions": {
"baseUrl": "src/",
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/styles": ["./src/styles"],
"@/graphql": ["./src/graphql"]
}
},
"include": [
"next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}