@modern-admin/tsconfig 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 +25 -0
- package/package.json +11 -1
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# @modern-admin/tsconfig
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@modern-admin/tsconfig)
|
|
4
|
+
[](https://github.com/modern-admin/modern-admin/blob/main/LICENSE)
|
|
5
|
+
|
|
6
|
+
> Shared TypeScript configuration presets for the Modern Admin monorepo.
|
|
7
|
+
|
|
8
|
+
Part of [**Modern Admin**](https://github.com/modern-admin/modern-admin) — a universal, modern admin panel framework
|
|
9
|
+
built on NestJS + React 19, with Prisma/Drizzle adapters, Tailwind 4 UI, and
|
|
10
|
+
end-to-end Zod validation.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
bun add @modern-admin/tsconfig
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Documentation
|
|
19
|
+
|
|
20
|
+
Setup guides, architecture, and usage examples live in the
|
|
21
|
+
[Modern Admin README](https://github.com/modern-admin/modern-admin#readme).
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
[MIT](https://github.com/modern-admin/modern-admin/blob/main/LICENSE) © Modern Admin
|
package/package.json
CHANGED
|
@@ -1,7 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modern-admin/tsconfig",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Shared TypeScript configuration presets for the Modern Admin monorepo.",
|
|
5
|
+
"homepage": "https://github.com/modern-admin/modern-admin/tree/main/packages/tsconfig#readme",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"modern-admin",
|
|
8
|
+
"admin",
|
|
9
|
+
"admin-panel",
|
|
10
|
+
"admin-dashboard",
|
|
11
|
+
"tsconfig",
|
|
12
|
+
"typescript",
|
|
13
|
+
"config"
|
|
14
|
+
],
|
|
5
15
|
"license": "MIT",
|
|
6
16
|
"repository": {
|
|
7
17
|
"type": "git",
|