diff --git a/index.ts b/index.ts new file mode 100644 index 0000000..1e608b6 --- /dev/null +++ b/index.ts @@ -0,0 +1,3 @@ +import { stringTokenizer } from "./src/commons"; + +export { stringTokenizer } \ No newline at end of file diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index 7bf587a..0000000 --- a/src/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { stringTokenizer } from "./src/commons/str-utils"; - -export { stringTokenizer } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 75abdef..8146047 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,5 +19,5 @@ "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, - "include": ["src"] + "include": ["src", "index.ts", "index.ts"] }