Skip to content

Commit

Permalink
Fix package.json (#740)
Browse files Browse the repository at this point in the history
Co-authored-by: Alder Whiteford <[email protected]>
  • Loading branch information
alderwhiteford and Alder Whiteford authored May 6, 2024
1 parent 5188b8a commit e019810
Show file tree
Hide file tree
Showing 4 changed files with 225 additions and 137 deletions.
4 changes: 2 additions & 2 deletions frontend/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@generatesac/lib",
"version": "1.0.51",
"module": "index.js",
"version": "1.0.52",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
Expand Down
3 changes: 2 additions & 1 deletion frontend/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"format": "prettier --write ."
},
"dependencies": {
"next": "14.2.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"semver": "7.6.0"
Expand Down
68 changes: 34 additions & 34 deletions frontend/web/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
}
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.js",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}
Loading

0 comments on commit e019810

Please sign in to comment.