Skip to content

Commit 2e68d82

Browse files
missing tsconfigs for /basic and /code-interpreter (#105)
we should also remove generated types for examples from gitignore, will do in a followup PR
1 parent dc6f2c1 commit 2e68d82

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

examples/basic/tsconfig.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"compilerOptions": {
3+
"target": "esnext",
4+
"lib": ["esnext", "dom", "dom.iterable"],
5+
"module": "esnext",
6+
"moduleResolution": "bundler",
7+
"types": ["@types/node", "./worker-configuration.d.ts"],
8+
"esModuleInterop": true,
9+
"forceConsistentCasingInFileNames": true,
10+
"strict": true,
11+
"skipLibCheck": true,
12+
"noEmit": true,
13+
"jsx": "react-jsx"
14+
},
15+
"include": ["worker-configuration.d.ts", "src/**/*.ts", "app/**/*.tsx"]
16+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"target": "esnext",
4+
"lib": ["esnext"],
5+
"module": "esnext",
6+
"moduleResolution": "bundler",
7+
"types": ["@types/node", "./worker-configuration.d.ts"],
8+
"esModuleInterop": true,
9+
"forceConsistentCasingInFileNames": true,
10+
"strict": true,
11+
"skipLibCheck": true,
12+
"noEmit": true
13+
},
14+
"include": ["worker-configuration.d.ts", "src/**/*.ts"]
15+
}

0 commit comments

Comments
 (0)