Files
solisting/app/next.config.ts

14 lines
415 B
TypeScript

import type { NextConfig } from 'next'
const config: NextConfig = {
reactStrictMode: true,
transpilePackages: ['@solana/connector', '@solisting/sdk', '@descro/sdk'],
typescript: {
// @descro/sdk has a pre-existing generic type variance error in its source;
// type correctness of our app code is enforced by `yarn typecheck` (tsc --noEmit).
ignoreBuildErrors: true,
},
}
export default config