vega-frontend-monorepo/apps/explorer-e2e/tsconfig.json

19 lines
520 B
JSON
Raw Normal View History

2022-02-15 14:12:27 +00:00
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"sourceMap": false,
"outDir": "../../dist/out-tsc",
"types": ["cypress", "node"],
2022-02-15 14:12:27 +00:00
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true
2022-02-15 14:12:27 +00:00
},
"include": ["src/**/*.ts", "src/**/*.js"]
}