ente/web/packages/build-config
2024-03-01 12:21:07 +05:30
..
.eslintrc.js Move into web/ 2024-03-01 12:21:07 +05:30
eslintrc-typescript-react.js Move into web/ 2024-03-01 12:21:07 +05:30
eslintrc-typescript.js Move into web/ 2024-03-01 12:21:07 +05:30
package.json Move into web/ 2024-03-01 12:21:07 +05:30
README.md Move into web/ 2024-03-01 12:21:07 +05:30
tsconfig.transpile.json Move into web/ 2024-03-01 12:21:07 +05:30

@/build-config

Build time configuration files. This can be thought of as a devDependency that exports various config files that our packages use at build time.

Packaging

This is not a TypeScript package, nor is it linted. It is not meant to be transpiled, it just exports static files that can be included verbatim.

Debugging

Too see what tsc is seeing (say when it is trying to type-check @/utils), use yarn workspace @/utils tsc --showConfig.

Similarly, to verify what ESLint is trying to do, use yarn workspace @/utils eslint --debug .

If the issue is in VSCode, open the output window of the corresponding plugin, it might be telling us what's going wrong there. In particular, when changing the settings here, you might need to "Developer: Reload Window" in VSCode to get it to pick up the changes.