aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-22 00:32:18 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-21 22:32:18 +0000
commit73ba955e344c8ccedd43235495ef8b72b5a2b6fd (patch)
tree03766ab32fefe7e83026a14393527f1dcbaed849 /gulpfile.babel.js
parentdocs: add cino as a contributor for infra [skip ci] (#330) (diff)
downloadferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.tar.gz
ferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.tar.zst
ferdium-app-73ba955e344c8ccedd43235495ef8b72b5a2b6fd.zip
chore: Transform AppStore.js into Typescript (#329)
* turn actions into typescript * correct tsconfig * added TypedStore
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index 1e6b1bbbd..f7c016c2b 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -70,16 +70,12 @@ const paths = {
70 javascripts: { 70 javascripts: {
71 src: 'src/**/*.js', 71 src: 'src/**/*.js',
72 dest: 'build/', 72 dest: 'build/',
73 watch: [ 73 watch: 'src/**/*.js',
74 'src/**/*.js',
75 ],
76 }, 74 },
77 typescripts: { 75 typescripts: {
78 src: ['src/**/*.ts', 'src/**/*.tsx'], 76 src: ['src/**/*.ts', 'src/**/*.tsx'],
79 dest: 'build/', 77 dest: 'build/',
80 watch: [ 78 watch: ['src/**/*.ts', 'src/**/*.tsx'],
81 'src/**/*.ts',
82 ],
83 }, 79 },
84}; 80};
85 81