Files
mostlymatter/webapp/playbooks/tsconfig.json
Harrison Healey 1edbde8aa3 Run type check for all web app packages in CI (#22578)
* 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
2023-03-23 10:10:52 -04:00

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"
]
}