diff options
author | crupest <crupest@outlook.com> | 2022-10-23 23:53:15 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-10-23 23:53:15 +0800 |
commit | 83f4fc8ab07a7f4cd3bba8042d600d7a4543bcaf (patch) | |
tree | 24a034a5fb23b71c51ea135efaa23ff24f7016a5 /FrontEnd/tsconfig.json | |
parent | 4a12e66fcba50cd566a4ab8c072a50ed0751dc0b (diff) | |
download | timeline-83f4fc8ab07a7f4cd3bba8042d600d7a4543bcaf.tar.gz timeline-83f4fc8ab07a7f4cd3bba8042d600d7a4543bcaf.tar.bz2 timeline-83f4fc8ab07a7f4cd3bba8042d600d7a4543bcaf.zip |
It's been a long time not developing this. Still need some time to get
it work again.
Diffstat (limited to 'FrontEnd/tsconfig.json')
-rw-r--r-- | FrontEnd/tsconfig.json | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/FrontEnd/tsconfig.json b/FrontEnd/tsconfig.json index 6b691e0e..967f9dd6 100644 --- a/FrontEnd/tsconfig.json +++ b/FrontEnd/tsconfig.json @@ -1,22 +1,10 @@ {
+ "extends": "@tsconfig/vite-react/tsconfig.json",
"compilerOptions": {
- "target": "ESNext",
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
- "skipLibCheck": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "react",
- "noEmit": true,
- "types": ["vite/client"],
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
- "include": ["./src"]
+ "include": ["src"]
}
|