mattermost/webapp/platform/components/tsconfig.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/**/*"
],
}