Skip to content

Commit

Permalink
migrate to stackblitz
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-shi committed May 14, 2024
1 parent 4d65a4a commit e8e3397
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ PORT=8080 yarn run examples:01_counter
and open <http://localhost:8080> in your web browser.

You can also try them in codesandbox.io:
[01](https://codesandbox.io/s/github/dai-shi/use-signals/tree/main/examples/01_counter)
[02](https://codesandbox.io/s/github/dai-shi/use-signals/tree/main/examples/02_jsx)
[01](https://stackblitz.com/github/dai-shi/use-signals/tree/main/examples/01_counter)
[02](https://stackblitz.com/github/dai-shi/use-signals/tree/main/examples/02_jsx)

## Tweets

Expand Down
15 changes: 15 additions & 0 deletions examples/01_counter/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"target": "es2018",
"downlevelIteration": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"allowJs": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx"
}
}
15 changes: 15 additions & 0 deletions examples/02_jsx/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"target": "es2018",
"downlevelIteration": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"allowJs": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx"
}
}

0 comments on commit e8e3397

Please sign in to comment.