mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
28378dc3fd
* use babel-preset-typescript * run type-check in release process
40 lines
725 B
JSON
40 lines
725 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|