forked from mattermost/mattermost-plugin-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
19 lines (19 loc) · 843 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"skipLibCheck": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@mattermost/client/*": ["../../../mattermost-server/webapp/platform/client/lib/*"],
"@mattermost/types/*": ["../../../mattermost-server/webapp/platform/types/lib/*"],
"@e2e-support/*": ["../../../mattermost-server/e2e-tests/playwright/support/*"],
"@e2e-test.config": ["../../../mattermost-server/e2e-tests/playwright/test.config.ts"],
"@e2e-test.playwright-config": ["../../../mattermost-server/e2e-tests/playwright/playwright.config.ts"],
"@playwright/test": ["../../../mattermost-server/e2e-tests/playwright/node_modules/@playwright/test"],
}
},
"include": ["./**/*"]
}