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

26 lines
405 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
2022-06-27 16:57:50 +00:00
"rootDir": ".",
},
"include": [
2022-06-27 16:57:50 +00:00
"**/*.d.ts",
"package.json",
2022-06-27 16:57:50 +00:00
"src",
],
"exclude": [
2022-06-27 16:57:50 +00:00
"**/*.test.ts",
"**/@types/mocha",
"**/__mocks__/*",
"**/__snapshots__/**",
"assets",
"bin",
"dist",
"jest.config.js",
2022-06-27 16:57:50 +00:00
"node_modules",
"scripts",
2022-06-27 16:57:50 +00:00
"src/jest",
],
}