diff options
author | crupest <crupest@outlook.com> | 2021-06-03 15:00:26 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-03 15:00:26 +0800 |
commit | 456341faf13470fc1eed5601e7beeb45e0613f7d (patch) | |
tree | 0e3a0736231e250c7bb6b1597d0409107adef4af /FrontEnd/src | |
parent | c7dd16740d7a8953533c895d1bebec0d84f7ec65 (diff) | |
download | timeline-456341faf13470fc1eed5601e7beeb45e0613f7d.tar.gz timeline-456341faf13470fc1eed5601e7beeb45e0613f7d.tar.bz2 timeline-456341faf13470fc1eed5601e7beeb45e0613f7d.zip |
build: Good bye babel!
Diffstat (limited to 'FrontEnd/src')
-rw-r--r-- | FrontEnd/src/app/App.tsx | 6 | ||||
-rw-r--r-- | FrontEnd/src/app/views/about/index.tsx | 4 | ||||
-rw-r--r-- | FrontEnd/src/tsconfig.json | 8 |
3 files changed, 6 insertions, 12 deletions
diff --git a/FrontEnd/src/app/App.tsx b/FrontEnd/src/app/App.tsx index 6431ebbb..a28b99ae 100644 --- a/FrontEnd/src/app/App.tsx +++ b/FrontEnd/src/app/App.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { ReactElement } from "react"; import { BrowserRouter as Router, Route, Switch } from "react-router-dom"; import AppBar from "./views/common/AppBar"; @@ -23,7 +23,7 @@ const LazyAdmin = React.lazy( () => import(/* webpackChunkName: "admin" */ "./views/admin/Admin") ); -const App: React.FC = () => { +function App(): ReactElement | null { const user = useRawUser(); React.useEffect(() => { @@ -82,6 +82,6 @@ const App: React.FC = () => { </React.Suspense> ); } -}; +} export default App; diff --git a/FrontEnd/src/app/views/about/index.tsx b/FrontEnd/src/app/views/about/index.tsx index d63b6996..a50164a9 100644 --- a/FrontEnd/src/app/views/about/index.tsx +++ b/FrontEnd/src/app/views/about/index.tsx @@ -25,10 +25,6 @@ const frontendCredits: { url: "https://react-bootstrap.github.io", }, { - name: "babeljs", - url: "https://babeljs.io", - }, - { name: "webpack", url: "https://webpack.js.org", }, diff --git a/FrontEnd/src/tsconfig.json b/FrontEnd/src/tsconfig.json index 1855f5cd..21989043 100644 --- a/FrontEnd/src/tsconfig.json +++ b/FrontEnd/src/tsconfig.json @@ -1,6 +1,6 @@ {
"compilerOptions": {
- "target": "esnext",
+ "target": "ES6",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
@@ -11,13 +11,11 @@ "moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
- "jsx": "preserve",
+ "jsx": "react",
"sourceMap": true,
"baseUrl": "./",
"paths": {
- "@/*": [
- "app/*"
- ]
+ "@/*": ["app/*"]
}
}
}
|