Skip to content

Commit 4df8d4d

Browse files
committed
manage: Replaced jsconfig.json with better tsconfig.json
1 parent b97bdb0 commit 4df8d4d

File tree

2 files changed

+32
-21
lines changed

2 files changed

+32
-21
lines changed

jsconfig.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

tsconfig.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"compilerOptions": {
3+
"allowJs": true,
4+
"checkJs": true,
5+
"esModuleInterop": true,
6+
"baseUrl": ".",
7+
"outDir": "dist/typescript",
8+
"declaration": true,
9+
"emitDeclarationOnly": true,
10+
"paths": {
11+
"lib/*": [
12+
"src/lib/*"
13+
],
14+
"src/*": [
15+
"src/*"
16+
],
17+
"root/*": [
18+
"./*"
19+
]
20+
}
21+
},
22+
"include": [
23+
"src/**/*.js"
24+
],
25+
"exclude": [
26+
"node_modules",
27+
"dist"
28+
],
29+
"typeAcquisition": {
30+
"enable": true
31+
}
32+
}

0 commit comments

Comments
 (0)