Run npm upgrade

This commit is contained in:
Koen Vlaswinkel
2023-12-11 14:55:01 +01:00
parent 4f85ac11a9
commit 39229c26d4
4 changed files with 9097 additions and 33889 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
import * as React from "react"; import * as React from "react";
import { styled } from "styled-components"; import { styled } from "styled-components";
import classNames from "classnames"; import * as classNames from "classnames";
type Props = { type Props = {
name: string; name: string;

View File

@@ -1,6 +1,6 @@
import * as React from "react"; import * as React from "react";
import { Codicon } from "./Codicon"; import { Codicon } from "./Codicon";
import classNames from "classnames"; import * as classNames from "classnames";
type Props = { type Props = {
label?: string; label?: string;

View File

@@ -1,11 +1,10 @@
{ {
"extends": "../tsconfig.json", "extends": "../tsconfig.json",
"include": ["**/*.ts", "../src/**/*.ts", "**/.eslintrc.js", "**/*.config.js"], "include": ["**/*.ts", "../src/**/*.ts", "**/.eslintrc.js", "**/*.config.js"],
"exclude": [], "exclude": ["../src/view/**/*.ts"],
"compilerOptions": { "compilerOptions": {
"noEmit": true, "noEmit": true,
"resolveJsonModule": true, "resolveJsonModule": true,
"rootDir": "..", "rootDir": ".."
"jsx": "react"
} }
} }