refactor(react): update include path in tsconfig.json

The path to the "lib.tsx" file in the include array in the TypeScript configuration file for the React package, tsconfig.json, has been adjusted for improved clarity and accuracy.
This commit is contained in:
p-sw 2024-06-11 17:50:12 +09:00
parent 31659c0b6c
commit f07d496792

View File

@ -28,6 +28,6 @@
"@pswui-lib": ["lib.tsx"]
}
},
"include": ["components", "src", "lib"],
"include": ["components", "src", "./lib.tsx"],
"references": [{ "path": "./tsconfig.node.json" }]
}