fix: ignore TS errors to speed up the TS compiling.

This commit is contained in:
a.bouhuolia
2022-09-19 21:16:02 +02:00
parent 2ae720821e
commit 84a903361e
2215 changed files with 2202 additions and 91 deletions

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import React from 'react';
import { CurrencyTag } from '@/components';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import React, { useCallback } from 'react';
import { MenuItem, Button } from '@blueprintjs/core';
import { Select } from '@blueprintjs/select';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import React from 'react';
import intl from 'react-intl-universal';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
import React, { useCallback, useEffect, useState } from 'react';
import { FormattedMessage as T } from '@/components';
import { CLASSES } from '@/constants/classes';

View File

@@ -1,3 +1,4 @@
// @ts-nocheck
export * from './CurrencySelect';
export * from './BaseCurrency';
export * from './CurrenciesSelectList';