We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1334411 commit b22acb3Copy full SHA for b22acb3
tsconfig.lib.json
@@ -1,8 +1,13 @@
1
{
2
"compilerOptions": {
3
+ // Emit declaration files for the library.
4
"noEmit": false,
5
"declaration": true,
6
"emitDeclarationOnly": true,
7
+
8
+ // Libraries generally require more strict type accuracy.
9
+ // For example, its types must be compatible with the Vue types.
10
+ // So we don't want to skip the type checking of its dependencies.
11
"skipLibCheck": false
12
}
13
0 commit comments