Skip to content

Commit 0f9e43d

Browse files
committed
setup tsconfig
1 parent 6560d8d commit 0f9e43d

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

tsconfig.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES6",
4+
"module": "ES6",
5+
"strict": true,
6+
"esModuleInterop": true,
7+
"allowJs": false,
8+
"types": [],
9+
"typeRoots": [
10+
"./types",
11+
"./src"
12+
],
13+
"lib": ["DOM", "ES6"],
14+
"skipLibCheck": true,
15+
"moduleResolution": "node"
16+
},
17+
"include": [
18+
"src/**/*.d.ts",
19+
"types/**/*.d.ts",
20+
"lib/**/*.ts"
21+
]
22+
}
23+
24+

0 commit comments

Comments
 (0)