Skip to content

Commit 4958e43

Browse files
authored
Merge pull request #9 from BanDroid/main
fix: initialize typescript for providing typings
2 parents 3dfd08f + 5984f61 commit 4958e43

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tsconfig.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2016",
4+
"module": "commonjs",
5+
"allowJs": true,
6+
"esModuleInterop": true,
7+
"forceConsistentCasingInFileNames": true,
8+
"strict": true,
9+
"skipLibCheck": true,
10+
"outDir": "dist"
11+
},
12+
"exclude": ["./dist/**/*", "./postcss.config.js"]
13+
}

0 commit comments

Comments
 (0)