Skip to content

Commit 0cff09d

Browse files
author
Simon Planinschek
committed
Add typescript compiler config file
1 parent b185076 commit 0cff09d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"compilerOptions": {
3+
"module": "ESNext",
4+
"target": "ES6",
5+
"jsx": "react",
6+
"moduleResolution": "Node",
7+
"esModuleInterop": true,
8+
"outDir": "./dist",
9+
"declaration": true,
10+
"sourceMap": false
11+
},
12+
"include": [
13+
"src"
14+
],
15+
"exclude": [
16+
"node_modules"
17+
]
18+
}

0 commit comments

Comments
 (0)