aboutsummaryrefslogtreecommitdiff
path: root/tools/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/utils.ts')
-rw-r--r--tools/utils.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/utils.ts b/tools/utils.ts
new file mode 100644
index 0000000..81e3bb2
--- /dev/null
+++ b/tools/utils.ts
@@ -0,0 +1,11 @@
+export * from './utils/template-injectables';
+export * from './utils/template-locals';
+export * from './utils/server';
+export * from './utils/tasks_tools';
+
+
+export function tsProjectFn(plugins) {
+ return plugins.typescript.createProject('tsconfig.json', {
+ typescript: require('typescript')
+ });
+}