diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index fef389a..b9ad173 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,7 @@ "checkJs": true, "removeComments": true, "resolveJsonModule": true, - "typeRoots": ["./node_modules/@types"], + "typeRoots": ["./node_modules/@types", "./src/types"], "sourceMap": true, "outDir": "dist", "strict": true, @@ -18,5 +18,6 @@ "moduleResolution": "NodeNext", "skipLibCheck": true }, - "include": ["./src/**/*"] + "include": ["./src/**/*"], + "files": ["./src/index.d.ts"] } |