diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index b546a71..0000000 --- a/jsconfig.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "compilerOptions": { - "charset": "utf8", - "baseUrl": "./", - "paths": { - "lib/*": [ - "src/lib/*" - ], - "src/*": [ - "src/*" - ], - "root/*": [ - "./*" - ] - } - }, - "exclude": [ - "node_modules", - "dist" - ] -} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..9e87032 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,32 @@ +{ + "compilerOptions": { + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "baseUrl": ".", + "outDir": "dist/typescript", + "declaration": true, + "emitDeclarationOnly": true, + "paths": { + "lib/*": [ + "src/lib/*" + ], + "src/*": [ + "src/*" + ], + "root/*": [ + "./*" + ] + } + }, + "include": [ + "src/**/*.js" + ], + "exclude": [ + "node_modules", + "dist" + ], + "typeAcquisition": { + "enable": true + } +} \ No newline at end of file