mattermost-desktop/tsconfig.json

35 lines
743 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"experimentalDecorators": true,
"jsx": "react",
"baseUrl": "./src",
},
"include": [
"./src/**/*"
],
"exclude": [
"dist",
"e2e",
"!node_modules/@types",
"storybook-static",
"coverage"
]
}