mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* clean up `package.json` files * chore(ts): make sure `next-auth/next` does not conflict with `next` * simplify `turbo.json` * fix: apply suggestion * simplify doc dev command * ignore upstash redis again * ignore mikro orm for now * chore: dev command * update lock file * update css path for dev only * Update apps/dev/package.json Co-authored-by: Thang Vu <thvu@hey.com>
22 lines
552 B
JSON
22 lines
552 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "jest.config.js"]
|
|
}
|