* Fix incorrect usage of types pacakge * Make platform packages properly expose their type definitions * Have Boards, Channels, and Playbooks get types from platform packages properly * Run type check for all web app packages in CI * Fix incorrect job name
40 строки
900 B
JSON
40 строки
900 B
JSON
{
|
|
"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": "commonjs",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"useUnknownInCatchVariables": false,
|
|
"paths": {
|
|
"src": ["src"],
|
|
"mattermost-redux/*": ["../channels/src/packages/mattermost-redux/src/*"],
|
|
"reselect": ["../channels/src/packages/reselect/src"]
|
|
}
|
|
},
|
|
"include": [
|
|
"./i18n/*.json",
|
|
"./src/**/*",
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"!node_modules/@types"
|
|
]
|
|
}
|