aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-vscode/example/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/bun-vscode/example/tsconfig.json')
-rw-r--r--packages/bun-vscode/example/tsconfig.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/bun-vscode/example/tsconfig.json b/packages/bun-vscode/example/tsconfig.json
new file mode 100644
index 000000000..1449bc3d9
--- /dev/null
+++ b/packages/bun-vscode/example/tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "compilerOptions": {
+ "lib": ["ESNext"],
+ "module": "esnext",
+ "target": "esnext",
+ "moduleResolution": "bundler",
+ "moduleDetection": "force",
+ "allowImportingTsExtensions": true,
+ "noEmit": true,
+ "composite": true,
+ "strict": true,
+ "downlevelIteration": true,
+ "skipLibCheck": true,
+ "jsx": "preserve",
+ "allowSyntheticDefaultImports": true,
+ "forceConsistentCasingInFileNames": true,
+ "allowJs": true,
+ "types": [
+ "bun-types" // add Bun global
+ ]
+ }
+}