Alex Mikhalev
7 years ago
17 changed files with 54 additions and 59 deletions
@ -1,7 +1,7 @@
@@ -1,7 +1,7 @@
|
||||
import * as React from "react"; |
||||
import { Input, InputOnChangeData } from "semantic-ui-react"; |
||||
|
||||
import { Duration } from "common/sprinklers"; |
||||
import { Duration } from "@common/sprinklers"; |
||||
|
||||
export default class DurationInput extends React.Component<{ |
||||
duration: Duration, |
@ -1,8 +1,8 @@
@@ -1,8 +1,8 @@
|
||||
import {observer} from "mobx-react"; |
||||
import { observer } from "mobx-react"; |
||||
import * as React from "react"; |
||||
import {Segment} from "semantic-ui-react"; |
||||
import { Segment } from "semantic-ui-react"; |
||||
|
||||
import {SectionRunner} from "common/sprinklers"; |
||||
import { SectionRunner } from "@common/sprinklers"; |
||||
|
||||
@observer |
||||
export default class SectionRunnerView extends React.Component<{ sectionRunner: SectionRunner }, {}> { |
@ -1,6 +1,6 @@
@@ -1,6 +1,6 @@
|
||||
import {observable} from "mobx"; |
||||
|
||||
import { getRandomId } from "common/utils"; |
||||
import { getRandomId } from "@common/utils"; |
||||
|
||||
export class Message { |
||||
id: string; |
@ -1,12 +1,7 @@
@@ -1,12 +1,7 @@
|
||||
const webpackMerge = require("webpack-merge"); |
||||
const base = require("./base.config"); |
||||
|
||||
module.exports = webpackMerge.smart(base, { |
||||
entry: [ |
||||
"core-js", |
||||
"./app/script/index.tsx" |
||||
], |
||||
module.exports = webpackMerge.strategy({})(base, { |
||||
devtool: "none", |
||||
plugins: [ |
||||
] |
||||
plugins: [] |
||||
}); |
||||
|
Loading…
Reference in new issue