๐Ÿ“ฆ microsoft / playwright

๐Ÿ“„ tsconfig.json ยท 25 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25{
    "compilerOptions": {
        "allowJs": true,
        "checkJs": false,
        "noEmit": true,
        "moduleResolution": "node",
        "target": "ESNext",
        "strictNullChecks": false,
        "strictBindCallApply": true,
        "allowSyntheticDefaultImports": true,
        "useUnknownInCatchVariables": false,
        "baseUrl": "..",
        "paths": {
          "@isomorphic/*": ["packages/playwright-core/src/utils/isomorphic/*"],
          "@testIsomorphic/*": ["packages/playwright/src/isomorphic/*"],
          "@protocol/*": ["packages/protocol/src/*"],
          "@recorder/*": ["packages/recorder/src/*"],
          "@trace/*": ["packages/trace/src/*"],
          "@web/*": ["packages/web/src/*"],
        },
    },
    "include": ["**/*.spec.js", "**/*.ts"],
    "exclude": ["components/", "installation/fixture-scripts/"]
}