insomnia/packages/insomnia-app/tsconfig.build.json

40 lines
725 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./build",
"rootDir": ".",
"resolveJsonModule": true,
"strict": false,
"strictNullChecks": true,
"jsx": "react",
"experimentalDecorators": true,
"skipLibCheck": 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",
".babelrc.js",
"bin",
"build",
"config",
"jest.config.js",
"node_modules",
"scripts",
"webpack"
]
}