X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/22cfdad7a451f67b0b4c195b58815cdf2abcfda9..dc3e54784bbab36e09c0151ba0c13792c95f2109:/tsconfig.json?ds=sidebyside diff --git a/tsconfig.json b/tsconfig.json index af933d9f..65315d61 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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, @@ -18,11 +20,14 @@ "suppressImplicitAnyIndexErrors": true, "noUnusedLocals": false, "experimentalDecorators": true, - "emitDecoratorMetadata": true - // waits for moduleNameMapper being able to override - // "paths": { - // "~/*": ["src/*"] - // } + "emitDecoratorMetadata": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true }, "exclude": [ "node_modules", @@ -31,7 +36,11 @@ "acceptance-tests", "webpack", "jest", + "cypress", "src/setupTests.ts", "**/*.test.tsx" + ], + "include": [ + "src" ] }