Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: thescientist13/greenwood-lit-ssr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d9594b6fde3bd8a65ea92b9eaaa0a2323c96e1c5
Choose a base ref
..
head repository: thescientist13/greenwood-lit-ssr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b1d62a8aaa5c42410a27dfea3a819b8db3ca2c24
Choose a head ref
Showing with 9 additions and 5 deletions.
  1. +2 −1 .npmrc
  2. +2 −1 package.json
  3. +4 −2 tsconfig.json
  4. +1 −1 vercel.json
3 changes: 2 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
public-hoist-pattern[]=@lit-labs/*
public-hoist-pattern[]=@lit-labs/*
public-hoist-pattern[]=typescript
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -24,7 +24,8 @@
"dev": "node --import @greenwood/cli/register ./node_modules/@greenwood/cli/src/index.js develop",
"build": "node --import @greenwood/cli/register ./node_modules/@greenwood/cli/src/index.js build",
"serve": "pnpm run clean && pnpm run build && node --import @greenwood/cli/register ./node_modules/@greenwood/cli/src/index.js serve",
"start": "pnpm run serve"
"start": "pnpm run serve",
"lint:types": "tsc --project ./tsconfig.json"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.18.0",
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -6,9 +6,11 @@
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"allowImportingTsExtensions": true,
"noEmit": true
"noEmit": true,
"checkJs": true
},
"include": [
"./src/**/*.ts"
"./src/**/*.ts",
"./src/**/*.js"
]
}
2 changes: 1 addition & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"buildCommand": "pnpm build"
"buildCommand": "pnpm run lint:types && pnpm build"
}