mirror of
https://github.com/mattermost/mattermost.git
synced 2026-04-12 20:47:51 -04:00
21 lines
508 B
JSON
21 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"isolatedModules": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
}
|