ci: typecheck
This commit is contained in:
parent
e0bfbcb663
commit
df046e5e04
2 changed files with 14 additions and 4 deletions
2
.github/workflows/typecheck.yml
vendored
2
.github/workflows/typecheck.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: Typecheck
|
name: typecheck
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,20 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
"jsxImportSource": "solid-js",
|
"jsxImportSource": "solid-js",
|
||||||
"types": ["vite/client"],
|
"types": [
|
||||||
"customConditions": ["development"],
|
"vite/client"
|
||||||
|
],
|
||||||
|
"lib": [
|
||||||
|
"DOM",
|
||||||
|
"DOM.Iterable",
|
||||||
|
],
|
||||||
|
"customConditions": [
|
||||||
|
"development"
|
||||||
|
],
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["./src/*"]
|
"@/*": [
|
||||||
|
"./src/*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue