rsnext/packages/third-parties/tsconfig.json
Jiachi Liu 4c84ea555d
Remove tsconfig extending for @next/thrid-parties package (#53991)
x-ref:
https://github.com/vercel/next.js/actions/runs/5854800073/job/15871731468

Do not use the `packages/next` tsconfig, aligning tsconfig with other
`@next/` packages. So it won't run tsc with `tsec` plugin
2023-08-14 14:26:24 +02:00

14 lines
301 B
JSON

{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"target": "es2019",
"outDir": "dist",
"jsx": "react",
"resolveJsonModule": true,
"module": "commonjs",
"rootDir": "src"
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules"]
}