diff --git a/pages/dashboard.tsx b/pages/dashboard.tsx index 9124a72..4db6516 100644 --- a/pages/dashboard.tsx +++ b/pages/dashboard.tsx @@ -1,6 +1,7 @@ import React from 'react' import { DashboardView } from '../styles/layouts/dashboard/DashboardView' + import MapCard from '../src/components/mapCard/MapCard' import GraphCard from '../src/components/graph/graphCard/ChartCard' import Header from '../src/components/header/Header' diff --git a/tsconfig.json b/tsconfig.json index a160b87..58defea 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,18 +13,19 @@ "noEmit": true, "incremental": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "node", + "module": "System", + "moduleResolution": "classic", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve" }, "include": [ "next-env.d.ts", + "./typings/type.d.ts", "**/*.ts", "**/*.tsx" ], "exclude": [ "node_modules" ] -} \ No newline at end of file +}