File tree Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Expand file tree Collapse file tree 2 files changed +6
-18
lines changed Original file line number Diff line number Diff line change 40
40
"lint" : " eslint ." ,
41
41
"release" : " bumpp && npm publish" ,
42
42
"test" : " vitest" ,
43
- "typecheck" : " tsc --noEmit " ,
44
- "prepare" : " simple-git-hooks && pnpm astro sync " ,
43
+ "typecheck" : " astro check --minimumSeverity warning --noSync && pnpm --filter docs typecheck " ,
44
+ "prepare" : " simple-git-hooks" ,
45
45
"docs" : " nr -C docs dev" ,
46
46
"docs:build" : " nr -C docs build"
47
47
},
Original file line number Diff line number Diff line change 1
1
{
2
+ "extends" : " astro/tsconfigs/strict" ,
2
3
"compilerOptions" : {
3
- "target" : " ESNext" ,
4
- "lib" : [
5
- " ESNext"
6
- ],
7
- "module" : " ESNext" ,
8
- "moduleResolution" : " Bundler" ,
9
- "resolveJsonModule" : true ,
10
- "strict" : true ,
11
- "strictNullChecks" : true ,
12
- "noEmit" : true ,
13
- "esModuleInterop" : true ,
14
- "skipDefaultLibCheck" : true ,
15
- "skipLibCheck" : true
4
+ "jsx" : " preserve" ,
5
+ "checkJs" : true
16
6
},
17
- "exclude" : [
18
- " docs"
19
- ]
7
+ "include" : [" src" ]
20
8
}
You can’t perform that action at this time.
0 commit comments