mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
41 lines
972 B
JSON
41 lines
972 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": "es2020",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "react",
|
|
"baseUrl": "./src",
|
|
"useUnknownInCatchVariables": false,
|
|
"composite": true,
|
|
"paths": {
|
|
"mattermost-redux/*": ["packages/mattermost-redux/src/*"],
|
|
"@mui/styled-engine": ["./node_modules/@mui/styled-engine-sc"],
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./src/**/*.json"
|
|
],
|
|
"references": [
|
|
{"path": "../platform/client"},
|
|
{"path": "../platform/components"},
|
|
{"path": "../platform/types"}
|
|
]
|
|
}
|