mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* move "e2e-tests/playwright/test" to "e2e-tests/playwright/test" and expose "ensurePluginsLoaded" * add test setup, and expose ensurePluginsLoaded and ensureServerDeployment to pw
21 lines
589 B
JSON
21 lines
589 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2022",
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"composite": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": ["node_modules", "playwright-report", "lib"]
|
|
}
|