mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
24 lines
534 B
JSON
24 lines
534 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "es2022",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"target": "es2022",
|
||
|
|
"declaration": true,
|
||
|
|
"strict": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"jsx": "react",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"composite": true,
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"./src/**/*"
|
||
|
|
],
|
||
|
|
"references": [
|
||
|
|
{"path": "../types"}
|
||
|
|
]
|
||
|
|
}
|