17782: Replaces react-scripts-ts with react-scripts v2.1.8
[arvados-workbench2.git] / tsconfig.json
index 34ee9ecdaf1555768ca910190a95f9e6a39f66da..65315d610c1ac83e4f67f521299acfeed66064a2 100644 (file)
@@ -1,13 +1,15 @@
 {
   "compilerOptions": {
-    "baseUrl": "./",
     "outDir": "build/dist",
     "module": "esnext",
     "target": "es5",
-    "lib": ["es6", "dom"],
+    "lib": [
+      "es6",
+      "dom"
+    ],
     "sourceMap": true,
     "allowJs": true,
-    "jsx": "react",
+    "jsx": "preserve",
     "moduleResolution": "node",
     "rootDir": "src",
     "forceConsistentCasingInFileNames": true,
     "noUnusedLocals": false,
     "experimentalDecorators": true,
     "emitDecoratorMetadata": true,
-    "paths": {
-      "~/*": ["src/*"]
-    }
+    "skipLibCheck": true,
+    "esModuleInterop": true,
+    "allowSyntheticDefaultImports": true,
+    "strict": true,
+    "resolveJsonModule": true,
+    "isolatedModules": true,
+    "noEmit": true
   },
   "exclude": [
     "node_modules",
@@ -33,5 +39,8 @@
     "cypress",
     "src/setupTests.ts",
     "**/*.test.tsx"
+  ],
+  "include": [
+    "src"
   ]
 }