Skip to content

Commit

Permalink
chore: lint TS config prop order
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Mar 14, 2024
1 parent 51f7e06 commit 2d3ef20
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions packages/react/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "react-jsx",
/* Limit global types to those in the current package */
"typeRoots": ["./node_modules/@types"],
"jsx": "react-jsx"
"typeRoots": ["./node_modules/@types"]
},
"include": ["src", "playground"],
"exclude": ["**/dist"]
Expand Down
6 changes: 3 additions & 3 deletions packages/solid/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
/* Limit global types to those in the current package */
"typeRoots": ["./node_modules/@types"],
"jsx": "preserve",
"jsxImportSource": "solid-js"
"jsxImportSource": "solid-js",
/* Limit global types to those in the current package */
"typeRoots": ["./node_modules/@types"]
},
"include": ["src", "playground"],
"exclude": ["**/dist"]
Expand Down
12 changes: 6 additions & 6 deletions packages/svelte/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"module": "NodeNext",
"moduleResolution": "NodeNext"
"skipLibCheck": true
}
}
4 changes: 2 additions & 2 deletions packages/vue/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"types": ["node"],
/* Limit global types to those in the current package */
"typeRoots": ["./node_modules/@types"]
"typeRoots": ["./node_modules/@types"],
"types": ["node"]
},
"include": ["src"],
"exclude": ["**/dist"]
Expand Down

0 comments on commit 2d3ef20

Please sign in to comment.