insomnia/packages/insomnia-app/tsconfig.build.json
Dimitri Mitropoulos 177d6adf38
Insomnia Config, controlled settings (#4031)
Co-authored-by: Opender Singh <opender94@gmail.com>
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-10-14 10:59:45 -04:00

37 lines
667 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build",
"rootDir": ".",
"resolveJsonModule": true,
"strict": false,
"strictNullChecks": true,
"jsx": "react",
"experimentalDecorators": true
},
"include": [
"**/*.d.ts",
"app",
"**/insomnia.config.json",
"package.json"
],
"exclude": [
"**/*.test.ts",
"**/*.test.tsx",
"**/@types/mocha",
"**/__jest__",
"**/__mocks__",
"**/__snapshots__",
"**/__tests__",
"**/main.min.js",
"__jest__",
"assets",
"bin",
"config",
"jest.config.js",
"node_modules",
"scripts",
"webpack"
]
}