From d552dec366bfe129ee2dbca832adc4d5e183615f Mon Sep 17 00:00:00 2001 From: zhujingjing Date: Fri, 10 Nov 2023 15:50:16 +0800 Subject: [PATCH] put index.ts up --- index.ts | 3 +++ src/index.ts | 3 --- tsconfig.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 index.ts delete mode 100644 src/index.ts 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"] }