Skip to content

Commit

Permalink
created tsconfig file
Browse files Browse the repository at this point in the history
  • Loading branch information
VashonG committed Aug 2, 2023
1 parent cd5b191 commit c96d9ba
Show file tree
Hide file tree
Showing 268 changed files with 10,359 additions and 1 deletion.
1 change: 1 addition & 0 deletions .tsbuildinfo

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Gruntfile.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
declare function _exports(grunt: any): void;
export = _exports;
//# sourceMappingURL=Gruntfile.d.ts.map
1 change: 1 addition & 0 deletions Gruntfile.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@
"build-storybook": "storybook build"
},
"dependencies": {
"@mui/material": "^5.14.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^6.8.1"
},
"devDependencies": {
Expand All @@ -27,6 +29,7 @@
"@storybook/react": "^7.0.3",
"@storybook/react-webpack5": "^7.0.3",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/react-dom": "^18.2.7",
"grunt": "^1.6.1",
"grunt-contrib-concat": "^2.1.0",
"grunt-contrib-uglify": "^5.2.2",
Expand Down
4 changes: 4 additions & 0 deletions src/App.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import React from 'react';
declare function App(): React.JSX.Element;
export default App;
//# sourceMappingURL=App.d.ts.map
1 change: 1 addition & 0 deletions src/App.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions src/App.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/App.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { Routes, Route } from 'react-router-dom';
import { HelmetProvider } from 'react-helmet-async';
import { ThemeProvider, StyledEngineProvider } from '@mui/material/styles';
import questTheme from 'src/CaratDesignSystemLightTheme';
import questTheme from './CaratDesignSystemLightTheme';

function App() {
return (
Expand Down
3 changes: 3 additions & 0 deletions src/CaratDesignSystemDarkTheme.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
declare const darkQuestTheme: import("@mui/material/styles").Theme;
export default darkQuestTheme;
//# sourceMappingURL=CaratDesignSystemDarkTheme.d.ts.map
1 change: 1 addition & 0 deletions src/CaratDesignSystemDarkTheme.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c96d9ba

Please sign in to comment.