Skip to content

Commit eac8a2b

Browse files
committed
Inits typescript
1 parent f738e12 commit eac8a2b

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tsconfig.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2016",
4+
"module": "commonjs",
5+
"esModuleInterop": true,
6+
"forceConsistentCasingInFileNames": true,
7+
8+
"rootDir": "./src",
9+
"outDir": "./dist",
10+
"declaration": true,
11+
"declarationDir": "./dist",
12+
13+
"allowJs": true,
14+
15+
"strict": true,
16+
"skipLibCheck": true
17+
},
18+
"exclude": ["./dist/**"]
19+
}

0 commit comments

Comments
 (0)