* 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
36 строки
876 B
JSON
36 строки
876 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"jsx": "react",
|
|
"target": "ESNext",
|
|
"module": "ES2022",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"noEmit": true,
|
|
"typeRoots": [ "./src/types", "./node_modules/@types"],
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"./i18n/*.json",
|
|
"./src/**/*",
|
|
],
|
|
"references": [
|
|
{"path": "../platform/client"},
|
|
{"path": "../platform/types"}
|
|
]
|
|
}
|