aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/tsconfig.json
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-06-03 15:00:26 +0800
committercrupest <crupest@outlook.com>2021-06-03 15:00:26 +0800
commit009d49e5b5cf7f7568e4b17961aa11b36d589a90 (patch)
tree7f28d980b8aa74c6159cf6c5b08941d93d49c30e /FrontEnd/src/tsconfig.json
parent125c77d974c90b547ec3f89e71ad6420f1668fd3 (diff)
downloadtimeline-009d49e5b5cf7f7568e4b17961aa11b36d589a90.tar.gz
timeline-009d49e5b5cf7f7568e4b17961aa11b36d589a90.tar.bz2
timeline-009d49e5b5cf7f7568e4b17961aa11b36d589a90.zip
build: Good bye babel!
Diffstat (limited to 'FrontEnd/src/tsconfig.json')
-rw-r--r--FrontEnd/src/tsconfig.json8
1 files changed, 3 insertions, 5 deletions
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/*"]
}
}
}