Skip to content

Commit

Permalink
chore(config/docs/tsconfig): match past working template
Browse files Browse the repository at this point in the history
  • Loading branch information
MFarabi619 committed Nov 29, 2024
1 parent 88f7e6e commit 9915ec9
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions apps/docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
"lib": ["dom", "dom.iterable", "esnext"],
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["node"],
"allowJs": true,
"strict": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
Expand All @@ -20,6 +22,15 @@
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"**/*.js",
"**/*.jsx",
"**/*.ts",
"**/*.tsx",
"../../apps/docs/.next/types/**/*.ts",
"../../dist/docs/.next/types/**/*.ts",
".next/types/**/*.ts",
"next-env.d.ts"
],
"exclude": ["node_modules", "jest.config.ts", "**/*.spec.ts", "**/*.test.ts"]
}

0 comments on commit 9915ec9

Please sign in to comment.