Files
medusa-store/www/apps/api-reference/tsconfig.json
Shahed Nasser 4d632e7a5d docs: added tests for components in api-reference project (#14428)
* add tests (WIP)

* added test for h2

* finished adding tests

* fixes

* fixes

* fixes
2026-01-05 10:56:56 +02:00

30 lines
459 B
JSON

{
"extends": "tsconfig/nextjs.json",
"compilerOptions": {
"paths": {
"@/*": [
"./*"
]
},
"typeRoots": [
"../../node_modules/@types",
"./node_modules/@types",
"./types"
],
"jsx": "preserve",
},
"include": [
"next-env.d.ts",
"**/*.tsx",
"**/*.ts",
"**/*.js",
".next/types/**/*.ts",
"**/*.mjs"
],
"exclude": [
"specs",
"**/__tests__",
"**/__mocks__"
]
}