Files
Mani b0724e568a chore: Bumped most of the dependencies to the latest version (#229)
* Bumped Next.js to 15.
* Bumped React to 19.
* Bumped GraphQL to 16.
* Bumped styled-components to 6.
* Bumped Radix components to latest version.
* Migrated Framer Motion to new package.
* Migrated react-query to new package.
* Lots of TypeScript fixes.
* Removed FontAwesome Pro icons.
* Started fading out SWR.
* Dev Server now uses Turbopack.
2025-01-19 02:46:18 +01:00

31 lines
845 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
},
"target": "es2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"verbatimModuleSyntax": true
},
"include": ["next-env.d.ts", "**/*.mjs", "**/*.ts", "**/*.tsx", "src/generated/graphql.ts", "css.d.ts"],
"exclude": ["node_modules"],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}