@medieval-kit/registry 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,12 +56,14 @@ as well — in `tsconfig.json`:
|
|
|
56
56
|
"compilerOptions": {
|
|
57
57
|
"moduleResolution": "bundler",
|
|
58
58
|
"allowImportingTsExtensions": true,
|
|
59
|
-
"baseUrl": ".",
|
|
60
59
|
"paths": { "@/*": ["./src/*"] }
|
|
61
60
|
}
|
|
62
61
|
}
|
|
63
62
|
```
|
|
64
63
|
|
|
64
|
+
No `baseUrl`: it was removed in TypeScript 7 and `paths` resolves relative to
|
|
65
|
+
this file on its own. Verified against a clean project on 7.0.2.
|
|
66
|
+
|
|
65
67
|
and in your bundler, because TypeScript's `paths` only teaches the type checker.
|
|
66
68
|
For Vite:
|
|
67
69
|
|