@luxfi/core 5.1.2 → 5.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/tsconfig.json +20 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxfi/core",
3
- "version": "5.1.2",
3
+ "version": "5.1.3",
4
4
  "description": "Library that contains shared UI primitives, support for a common design system, and other boilerplate support.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",
@@ -50,13 +50,13 @@
50
50
  "peerDependencies": {
51
51
  "@hookform/resolvers": "^3.3.2",
52
52
  "lucide-react": "^0.344.0",
53
- "next": "14.2.3",
53
+ "next": "^14.2.3",
54
54
  "next-themes": "^0.2.1",
55
55
  "react": "^18.2.0",
56
56
  "react-dom": "^18.2.0",
57
57
  "react-hook-form": "^7.44.2",
58
58
  "validator": "^13.11.0",
59
- "zod": "3.21.4"
59
+ "zod": "^3.21.4"
60
60
  },
61
61
  "devDependencies": {
62
62
  "@mdx-js/loader": "^3.0.0",
package/tsconfig.json CHANGED
@@ -1,10 +1,28 @@
1
1
  {
2
- "extends": "../tsconfig.base.json",
2
+ "plugins": [{ "name": "next"}],
3
3
  "include": [
4
4
  "**/*.ts",
5
5
  "**/*.tsx"
6
6
  ],
7
7
  "exclude": [
8
8
  "node_modules"
9
- ]
9
+ ],
10
+ "compilerOptions": {
11
+ "target": "es2020",
12
+ "lib": ["dom", "dom.iterable", "es2020"],
13
+ "allowJs": true,
14
+ "skipLibCheck": true,
15
+ "strict": true,
16
+ "forceConsistentCasingInFileNames": true,
17
+ "incremental": false,
18
+ "esModuleInterop": true,
19
+ "module": "esnext",
20
+ "moduleResolution": "bundler",
21
+ "resolveJsonModule": true,
22
+ "verbatimModuleSyntax": true,
23
+ "isolatedModules": true,
24
+ "jsx": "preserve",
25
+ "declaration": false,
26
+ "noEmit": true
27
+ }
10
28
  }