Minimal reproducible example:
-
apps:
app:
-
src/styles.module.css:
-
tsconfig.json:
{ "extends": ["../../tsconfig.a.json"] }
-
package.json:
{ "name": "app", "version": "0.0.0" }
-
package.json:
{
"name": "test",
"version": "0.0.0",
"workspaces": ["apps/*"],
"devDependencies": {
"@css-modules-kit/codegen": "^0.10.0",
"typescript": "^6.0.3"
}
}
-
tsconfig.json:
{
"include": ["${configDir}/**/*"],
"cmkOptions": { "enabled": true }
}
Commands run:
$ cd apps/app
$ npx cmk
error: The file specified in tsconfig.json not found.
This is likely because of the ${configDir} template variable.
Minimal reproducible example:
apps:app:src/styles.module.css:tsconfig.json:package.json:{ "name": "app", "version": "0.0.0" }package.json:{ "name": "test", "version": "0.0.0", "workspaces": ["apps/*"], "devDependencies": { "@css-modules-kit/codegen": "^0.10.0", "typescript": "^6.0.3" } }tsconfig.json:Commands run:
This is likely because of the
${configDir}template variable.