Skip to content
Snippets Groups Projects
Commit ac630987 authored by Léo Banno-Cloutier's avatar Léo Banno-Cloutier
Browse files

add tsconfig.json

Gitlab: #100
Change-Id: I66d9fea122f431b36ec9fe6cae24552edabdb5c0
parent f3db7d6e
No related branches found
No related tags found
No related merge requests found
{
"compilerOptions": {
"jsx": "react",
"baseUrl": "src",
"checkJs": true
},
"include": [
"src"
]
}
\ No newline at end of file
......@@ -10,6 +10,10 @@
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.6",
"@mui/styles": "^5.13.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"axios": "^1.4.0",
"classnames": "2.3.2",
"formik": "^2.1.5",
......@@ -33,6 +37,7 @@
"react-image-file-resizer": "^0.3.8",
"react-router-dom": "5.2.0",
"react-scripts": "^4.0.0",
"typescript": "^3.9.3",
"yup": "^1.2.0"
},
"scripts": {
......@@ -57,9 +62,6 @@
"bugs": {
"url": "https://github.com/creativetimofficial/material-dashboard-react/issues"
},
"optionalDependencies": {
"typescript": "3.9.3"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
......
/// <reference types="react-scripts" />
{
"compilerOptions": {
"baseUrl": "src",
"target": "es5",
"module": "esnext",
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowSyntheticDefaultImports": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
},
"include": [
"src"
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment