diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/index.ts | 2 | ||||
-rw-r--r-- | config/tsconfig.json | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/config/index.ts b/config/index.ts new file mode 100644 index 0000000..7514faa --- /dev/null +++ b/config/index.ts @@ -0,0 +1,2 @@ +export * from './Config.js'; +export { default as config, default } from './options.js'; diff --git a/config/tsconfig.json b/config/tsconfig.json index 46b2d15..583c81a 100644 --- a/config/tsconfig.json +++ b/config/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../tsconfig.base.json", "compilerOptions": { - "outDir": "../../dist/config" - }, - "files": ["./Config.ts", "example-options.ts", "options.ts"] + "outDir": "../dist/config" + } } |