Skip to content

Commit

Permalink
Fix tsconfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
rkulinski committed Nov 24, 2023
1 parent f988311 commit 396730d
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 36 deletions.
12 changes: 12 additions & 0 deletions examples/react/custom-steps/tsconfig.dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
}
13 changes: 4 additions & 9 deletions examples/react/custom-steps/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
"strict": true,
"esModuleInterop": true,
"jsx": "react"
}
}
12 changes: 12 additions & 0 deletions examples/react/custom-styles/tsconfig.dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
}
13 changes: 4 additions & 9 deletions examples/react/custom-styles/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
"strict": true,
"esModuleInterop": true,
"jsx": "react"
}
}
12 changes: 12 additions & 0 deletions examples/react/logarithmic-interpolator/tsconfig.dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
}
13 changes: 4 additions & 9 deletions examples/react/logarithmic-interpolator/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
"strict": true,
"esModuleInterop": true,
"jsx": "react"
}
}
12 changes: 12 additions & 0 deletions examples/react/update-on-drag/tsconfig.dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
}
13 changes: 4 additions & 9 deletions examples/react/update-on-drag/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"composite": true,
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build/types"
},
"files": ["src/main.tsx"],
"include": [
"src"
// "__tests__/**/*.test.*"
]
"strict": true,
"esModuleInterop": true,
"jsx": "react"
}
}

0 comments on commit 396730d

Please sign in to comment.