Skip to content

Commit 73d7a06

Browse files
committed
chore: align tsconfig with core
1 parent db92787 commit 73d7a06

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

Diff for: tsconfig.json

+24-6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
"baseUrl": ".",
1111
"rootDir": ".",
1212
"outDir": "dist",
13-
"declaration": true,
1413
"sourceMap": true,
14+
"declaration": true,
15+
"declarationMap": true,
1516
"removeComments": false,
1617
"noImplicitAny": true,
1718
"noImplicitReturns": true,
@@ -20,13 +21,30 @@
2021
"noUnusedParameters": true,
2122
"strictNullChecks": true,
2223
"suppressImplicitAnyIndexErrors": true,
23-
"types": ["node", "jest"],
24-
"lib": ["esnext", "dom", "es2017"],
24+
25+
"lib": [
26+
"esnext",
27+
"dom",
28+
"es2017"
29+
],
30+
2531
"paths": {
2632
"@/*": ["src/*"],
2733
"test/*": ["test/*"]
28-
}
34+
},
35+
36+
"types": [
37+
"node",
38+
"jest"
39+
]
2940
},
30-
"include": ["src", "test"],
31-
"exclude": ["node_modules"]
41+
42+
"include": [
43+
"src",
44+
"test"
45+
],
46+
47+
"exclude": [
48+
"node_modules"
49+
]
3250
}

0 commit comments

Comments
 (0)