44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
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": "es2020",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"baseUrl": "./src",
|
|
"useUnknownInCatchVariables": false,
|
|
"composite": true,
|
|
"types": ["@testing-library/jest-dom"],
|
|
"paths": {
|
|
"mattermost-redux/*": ["packages/mattermost-redux/src/*"],
|
|
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"],
|
|
},
|
|
"plugins": [{
|
|
"name": "typescript-eslint-language-service"
|
|
}]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./src/**/*.json"
|
|
],
|
|
"references": [
|
|
{"path": "../platform/client"},
|
|
{"path": "../platform/components"},
|
|
{"path": "../platform/types"}
|
|
]
|
|
}
|