fix tsconfig configurations

This commit is contained in:
joseCorte-exe 2022-05-12 13:30:52 -03:00
parent a9f5c964bf
commit a2fc9b0355
2 changed files with 5 additions and 3 deletions

View File

@ -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'

View File

@ -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"
]
}
}