Skip to content

Commit

Permalink
Update tsconfig.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Mar 4, 2021
1 parent 7bafb80 commit 68cba44
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion packages/mathjax3-extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedLocals": false,
"preserveWatchOutput": true,
"resolveJsonModule": true,
"outDir": "lib",
"rootDir": "src",
"skipLibCheck": true,
"strict": true,
"strictNullChecks": false,
"target": "es2017",
Expand Down
2 changes: 1 addition & 1 deletion packages/vega2-extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"strict": true,
"strictNullChecks": false,
"target": "es2017",
"types": []
"types": ["node"]
},
"include": ["src/*"]
}
7 changes: 3 additions & 4 deletions packages/vega3-extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,18 @@
"esModuleInterop": true,
"incremental": true,
"jsx": "react",
"module": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noImplicitAny": true,
"noImplicitAny": false,
"noUnusedLocals": true,
"preserveWatchOutput": true,
"resolveJsonModule": true,
"outDir": "lib",
"rootDir": "src",
"strict": true,
"strictNullChecks": false,
"target": "es2017",
"types": []
},
"include": ["src/*"]
"include": ["src/*", "typings/*.d.ts"]
}

0 comments on commit 68cba44

Please sign in to comment.