Doug Lauder
2023-03-22 17:22:27 -04:00
коммит произвёл GitHub
родитель b61c096497
Коммит c943ed6859
13276 изменённых файлов: 1695615 добавлений и 223189 удалений

51
webapp/channels/tsconfig.json Обычный файл
Просмотреть файл

@@ -0,0 +1,51 @@
{
"compilerOptions": {
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"module": "es2020",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"experimentalDecorators": true,
"jsx": "react",
"baseUrl": "./src",
"useUnknownInCatchVariables": false,
"paths": {
"@mattermost/client": ["../../platform/client/src"],
"@mattermost/components": ["../../platform/components/src"],
"@mattermost/types/*": ["../../platform/types/src/*"],
"mattermost-redux/*": ["packages/mattermost-redux/src/*"],
"reselect": ["packages/reselect/src"],
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"],
"!!file-loader*": ["utils/empty-string"],
"@e2e-support/*": ["e2e/playwright/support/*"],
"@e2e-test.config": ["e2e/playwright/test.config.ts"]
}
},
"include": [
"./src/**/*"
],
"exclude": [
"dist",
"e2e/cypress",
"e2e/playwright",
"!node_modules/@types",
"coverage"
],
"references": [
{"path": "../platform/client"},
{"path": "../platform/types"}
]
}