Skip to content

Commit

Permalink
Fix extension-import needing its own tsconfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenh committed Jun 5, 2024
1 parent 743c046 commit e4d40c0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions integration/extension-import/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"compilerOptions": {
"target": "es2018",
"lib": ["es2018"],
"module": "commonjs",
"strict": true,
"outDir": "build",
"skipLibCheck": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": ["./"]
}

0 comments on commit e4d40c0

Please sign in to comment.