Skip to content

Commit

Permalink
chores(tsconfig): fix type check
Browse files Browse the repository at this point in the history
  • Loading branch information
ido-pluto committed Nov 18, 2023
1 parent bf38ec7 commit eb4de23
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 12 deletions.
4 changes: 1 addition & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions packages/context/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,9 @@
"./Context.astro": "./Context.astro"
},
"devDependencies": {
"astro": "^3.5.5",
"semantic-release": "^22.0.8",
"semantic-release-monorepo": "^7.0.5",
"typescript": "^5.2.2"
},
"peerDependencies": {
"astro": "^3.5.5"
}
}
4 changes: 2 additions & 2 deletions packages/context/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { AstroGlobal } from "astro";
import {AstroGlobal} from 'astro';

declare global {
export namespace App {
Expand Down Expand Up @@ -30,4 +30,4 @@ export async function asyncContext<T>(promise: () => Promise<T>, astro: ContextA

contextHistory.pop();
return response;
}
}
3 changes: 2 additions & 1 deletion packages/context/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
Expand Down
5 changes: 3 additions & 2 deletions packages/formidable/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
Expand All @@ -20,4 +21,4 @@
"src/**/*.spec.ts",
"node_modules"
]
}
}
3 changes: 2 additions & 1 deletion packages/forms/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"allowSyntheticDefaultImports": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true
"declaration": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
Expand Down

0 comments on commit eb4de23

Please sign in to comment.