mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
35 lines
614 B
JSON
35 lines
614 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.base.json",
|
||
|
"compilerOptions": {
|
||
|
"outDir": "./build",
|
||
|
"rootDir": ".",
|
||
|
"resolveJsonModule": true,
|
||
|
"strict": false,
|
||
|
"strictNullChecks": true,
|
||
|
"jsx": "react",
|
||
|
"experimentalDecorators": true
|
||
|
},
|
||
|
"include": [
|
||
|
"**/*.d.ts",
|
||
|
"app",
|
||
|
"package.json"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/*.test.ts",
|
||
|
"**/*.test.tsx",
|
||
|
"**/@types/mocha",
|
||
|
"**/__jest__",
|
||
|
"**/__mocks__",
|
||
|
"**/__snapshots__",
|
||
|
"**/__tests__",
|
||
|
"__jest__",
|
||
|
"assets",
|
||
|
"bin",
|
||
|
"config",
|
||
|
"jest.config.js",
|
||
|
"node_modules",
|
||
|
"scripts",
|
||
|
"webpack"
|
||
|
]
|
||
|
}
|