Skip to content

Commit

Permalink
Fix CI : revert tsconfig.json and add ts-ignore on import
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-kosmos committed Sep 6, 2022
1 parent d69c857 commit 356a00d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ import {
CustomRangeKey,
FrameComponentProps,
} from 'src/explore/components/controls/DateFilterControl/types';
import { locales } from 'antd/dist/antd-with-locales';
// @ts-ignore
import locales from 'antd/dist/antd-with-locales';
import { bootstrapData } from 'src/preamble';

const languages = {
Expand Down
2 changes: 1 addition & 1 deletion superset-frontend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
/* Type Checking */
"noImplicitAny": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
Expand Down

0 comments on commit 356a00d

Please sign in to comment.