* upgrade to next 14 * use default react import * use `next/compat/router` * set baseurl for next13 app * get it working * fix Error Component * fix floating promisis * Create modern-cups-cheat.md * fix type of error boundary * get react query working again * remove experimental * remove broken test since next export is removed * fix qm integration test * fix mismatch of cookie names in client and server * fix `auth-with-rpc` * fix unit tests * fix snapshot * remove `@tanstack/query-core` dep from `@blitzjs/rpc` * Update .changeset/modern-cups-cheat.md * fix: lockfile * regression: re-export react query client utilites * Update .changeset/modern-cups-cheat.md * do not export `withRouter` * revert change to `BlitzProvider` * remove unnecessary next types
27 lines
615 B
JSON
27 lines
615 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|