This commit is contained in:
Max Schmitt 2024-07-10 21:35:22 +02:00
parent 530e6c06ac
commit 7ca22855af
2 changed files with 4 additions and 3 deletions

View file

@ -30,7 +30,7 @@
"ct": "playwright test tests/components/test-all.spec.js --reporter=list",
"test": "playwright test --config=tests/library/playwright.config.ts",
"eslint": "eslint --cache --report-unused-disable-directives --ext ts,tsx,js,jsx,mjs .",
"tsc": "tsc -p .",
"tsc": "tsc -p . && tsc -p packages/html-reporter/",
"build-installer": "babel -s --extensions \".ts\" --out-dir packages/playwright-core/lib/utils/ packages/playwright-core/src/utils",
"doc": "node utils/doclint/cli.js",
"lint": "npm run eslint && npm run tsc && npm run doc && npm run check-deps && node utils/generate_channels.js && node utils/generate_types/ && npm run lint-tests && npm run test-types && npm run lint-packages",

View file

@ -24,7 +24,7 @@
"esModuleInterop": true,
"strict": true,
"allowJs": false,
"jsx": "preserve",
"jsx": "react-jsx",
"resolveJsonModule": true,
"noEmit": true,
"noImplicitOverride": true,
@ -35,5 +35,6 @@
"include": ["packages"],
"exclude": [
"packages/*/lib",
],
"packages/html-reporter/"
]
}