We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9071f55 commit 1dcd4e0Copy full SHA for 1dcd4e0
packages/browser/test/e2e/tsconfig.json
@@ -1,8 +1,23 @@
1
{
2
- "extends": "../../tsconfig.json",
3
- "include": ["./**/*.ts"],
4
- "exclude": ["dist"],
5
"compilerOptions": {
6
- "rootDir": "."
7
- }
+ "allowJs": true,
+ "alwaysStrict": true,
+ "esModuleInterop": true,
+ "forceConsistentCasingInFileNames": true,
+ "isolatedModules": true,
8
+ "jsx": "preserve",
9
+ "lib": ["dom", "es2017"],
10
+ "module": "esnext",
11
+ "moduleResolution": "node",
12
+ "noEmit": true,
13
+ "noFallthroughCasesInSwitch": true,
14
+ "noUnusedLocals": true,
15
+ "noUnusedParameters": true,
16
+ "resolveJsonModule": true,
17
+ "skipLibCheck": true,
18
+ "strict": true,
19
+ "target": "esnext"
20
+ },
21
+ "exclude": ["node_modules"],
22
+ "include": ["**/*.ts"]
23
}
0 commit comments