Skip to content

Commit f9ab23a

Browse files
committedApr 7, 2019
Add tsconfig to demo app
1 parent eec1beb commit f9ab23a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎demo/tsconfig.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"compilerOptions": {
3+
"experimentalDecorators": true,
4+
"jsx": "react",
5+
"jsxFactory": "h",
6+
"baseUrl": ".",
7+
"target": "es2018",
8+
"module": "es2015",
9+
"moduleResolution": "node",
10+
"paths": {
11+
"preact/hooks": ["../hooks/src/index.js"],
12+
"preact": ["../src/index.js"],
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)
Please sign in to comment.