diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8e3ca20 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "compilerOptions": { + "allowJs": true, + "emitDeclarationOnly": true, + "declaration": true, + "outDir": "types", + "checkJs": true, + "target": "es2020", + "module": "es2020", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true + }, + "include": [ + "src/**/*" + ] +}