Skip to content

Commit

Permalink
Add jsconfig.json to improve VSCode intellisense
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewiggins committed Nov 3, 2019
1 parent 3664bd5 commit 5b0cf37
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"compilerOptions": {
"baseUrl": ".",
"checkJs": true,
"jsx": "react",
"lib": ["dom", "es5"],
"moduleResolution": "node",
"paths": {
"preact": ["."],
"preact/*": ["./*"]
},
"reactNamespace": "createElement",
"target": "es5"
},
"exclude": ["node_modules", "dist", "demo"]
}

0 comments on commit 5b0cf37

Please sign in to comment.