npm doesn't support the "@" character in package names (it's used for scopes). We eventually want to move from yarn to npm, so in preparation, rename our internal packages accordingly so that they also work with npm workspaces. Methodology: No manual code changes, just automatic search replace of ``` "@/accounts => "ente-accounts "@/utils => "ente-utils ... "@ente/shared => "ente-shared ``` Then reran prettier.
14 lines
373 B
JSON
14 lines
373 B
JSON
{
|
|
"extends": "ente-build-config/tsconfig-next.json",
|
|
"compilerOptions": {
|
|
/* Set the base directory from which to resolve bare module names. */
|
|
"baseUrl": "./src"
|
|
},
|
|
"include": [
|
|
"src",
|
|
"next-env.d.ts",
|
|
"../../packages/base/global-electron.d.ts",
|
|
"../../packages/base/components/utils/mui-theme.d.ts"
|
|
]
|
|
}
|