config
1 year ago
specs
2 weeks ago
.prettierrc.json
1 year ago
.wp-env.json
1 year ago
README.md
1 year ago
playwright.config.ts
1 year ago
tsconfig.json
1 year ago
tsconfig.json
17 lines
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "baseUrl": "./e2e-tests", |
| 4 | "downlevelIteration": true, |
| 5 | "target": "esnext", |
| 6 | "module": "esnext", |
| 7 | "lib": [ "DOM", "DOM.Iterable", "ESNext" ], |
| 8 | "types": ["node"], |
| 9 | "moduleResolution": "node", |
| 10 | "esModuleInterop": false, |
| 11 | "resolveJsonModule": true, |
| 12 | }, |
| 13 | "include": [ |
| 14 | ".", |
| 15 | ] |
| 16 | } |
| 17 |