mirror of
https://github.com/Snouzy/workout-cool.git
synced 2026-05-19 14:40:35 +00:00
b2a3be5bff
refactor(layout.tsx): update children prop type from ReactElement to ReactNode for better type safety refactor(another layout.tsx): change children prop type to ReactNode for improved flexibility refactor(verify-email layout.tsx): replace ReactElement with ReactNode in props for consistency refactor(main layout.tsx): update children prop type to ReactNode for better type coverage feat: add default
56 lines
999 B
JSON
56 lines
999 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/workoutcool/*": [
|
|
"./src/*"
|
|
],
|
|
"@emails/*": [
|
|
"emails/*"
|
|
],
|
|
"@public/*": [
|
|
"public/*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/utils/inapp.js",
|
|
"src/utils/externalLinkOpener.js",
|
|
"src/utils/browserEscape.js"
|
|
],
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
"tailwind.config.ts",
|
|
".next/dev/types/**/*.ts"
|
|
]
|
|
}
|