diff --git a/tsconfig-declaration.json b/tsconfig-declaration.json new file mode 100644 index 00000000..8ba13448 --- /dev/null +++ b/tsconfig-declaration.json @@ -0,0 +1,14 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "noEmit": false, + "emitDeclarationOnly": true, + "declaration": true, + "outDir": "dist/types", + "rootDir": "src" + }, + "exclude": [ + "src/sdk/paths/*" + ], + "include": ["src/**/*"], +} diff --git a/tsconfig.json b/tsconfig.json index e3fae938..f46cc7eb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,12 @@ { "compilerOptions": { "strictNullChecks": true, + "noImplicitAny": false, "noEmit": true, "target": "ES2020", - "moduleResolution": "node" + "module": "ES2020", + "moduleResolution": "node", + "esModuleInterop": true }, "exclude": [ "src/sdk/paths/*"