Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typescript setup (second try) #1532

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix more file extensions
  • Loading branch information
epicfaace committed Dec 7, 2019
commit 734cec50afd3ea71ed6b1ed8c7eb2b59064a521d
2 changes: 1 addition & 1 deletion packages/core/src/components/widgets/CheckboxWidget.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import PropTypes from "prop-types";
import DescriptionField from "../fields/DescriptionField.js";
import DescriptionField from "../fields/DescriptionField";

// Check to see if a schema specifies that a value must be true
function schemaRequiresTrueValue(schema) {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/webpack.config.dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
mode: "production",
cache: true,
context: __dirname + "/src",
entry: "./index.js",
entry: "./index.tsx",
output: {
path: path.join(__dirname, "dist"),
publicPath: "/dist/",
Expand Down