mirror of
https://github.com/infeng/react-viewer.git
synced 2025-12-08 17:36:40 +00:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
'use strict';
|
|
|
|
module.exports = function () {
|
|
return {
|
|
target: 'es6',
|
|
jsx: 'preserve',
|
|
moduleResolution: 'node',
|
|
declaration: true,
|
|
allowSyntheticDefaultImports: true,
|
|
};
|
|
};
|