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.
jsconfig.json
tsconfig.json
1 parent b97bdb0 commit 4df8d4dCopy full SHA for 4df8d4d
jsconfig.json
tsconfig.json
@@ -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