@datagrok/sequence-translator 1.9.9 → 1.9.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/test-record-1.mp4 CHANGED
Binary file
package/tsconfig.json CHANGED
@@ -61,8 +61,8 @@
61
61
  // "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
62
62
 
63
63
  /* Experimental Options */
64
- // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
65
- // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
64
+ "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
65
+ "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
66
66
 
67
67
  /* Advanced Options */
68
68
  "skipLibCheck": true, /* Skip type checking of declaration files. */
package/webpack.config.js CHANGED
@@ -1,6 +1,7 @@
1
1
  const path = require('path');
2
2
  const packageName = path.parse(require('./package.json').name).name.toLowerCase().replace(/-/g, '');
3
-
3
+ const FuncGeneratorPlugin = require('datagrok-tools/plugins/func-gen-plugin');
4
+
4
5
  module.exports = {
5
6
  cache: {type: 'filesystem'},
6
7
  mode: 'production',
@@ -41,4 +42,7 @@ module.exports = {
41
42
  libraryTarget: 'var',
42
43
  path: path.resolve(__dirname, 'dist'),
43
44
  },
45
+ plugins:[
46
+ new FuncGeneratorPlugin({outputPath: './src/package.g.ts'})
47
+ ]
44
48
  };