aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/tsconfig.json
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-07-11 01:07:57 +0800
committerGitHub <noreply@github.com>2023-07-11 01:07:57 +0800
commita702dff4b62090a4e5453a8b9236824288df0c4f (patch)
tree0deae7f40692345c8e4b1473cdddbd13e0e5586d /FrontEnd/tsconfig.json
parent4cb87464fea217e1d0969747d6a17e88973982e7 (diff)
parentd46b1aed549938c9f5e3e658b4098e71b5e2acf7 (diff)
downloadtimeline-a702dff4b62090a4e5453a8b9236824288df0c4f.tar.gz
timeline-a702dff4b62090a4e5453a8b9236824288df0c4f.tar.bz2
timeline-a702dff4b62090a4e5453a8b9236824288df0c4f.zip
Merge pull request #1381 from crupest/front-dev
Re-bootstrap front end.
Diffstat (limited to 'FrontEnd/tsconfig.json')
-rw-r--r--FrontEnd/tsconfig.json35
1 files changed, 29 insertions, 6 deletions
diff --git a/FrontEnd/tsconfig.json b/FrontEnd/tsconfig.json
index 967f9dd6..97946126 100644
--- a/FrontEnd/tsconfig.json
+++ b/FrontEnd/tsconfig.json
@@ -1,10 +1,33 @@
{
- "extends": "@tsconfig/vite-react/tsconfig.json",
"compilerOptions": {
- "baseUrl": "./",
+ "target": "ESNext",
+ "lib": [
+ "DOM",
+ "DOM.Iterable",
+ "ESNext"
+ ],
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "isolatedModules": true,
+ "allowJs": false,
+ "skipLibCheck": true,
+ "esModuleInterop": false,
+ "resolveJsonModule": true,
+ "jsx": "react-jsx",
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "baseUrl": ".",
"paths": {
- "@/*": ["src/*"]
- }
+ "~*": [
+ "./*"
+ ],
+ "@/*": [
+ "./src/*"
+ ]
+ },
+ "noEmit": true
},
- "include": ["src"]
-}
+ "include": [
+ "src"
+ ]
+} \ No newline at end of file