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

19 lines
313 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"composite": true,
"outDir": "dist",
"rootDir": "src",
"resolveJsonModule": true,
"strict": true,
},
"include": [
"src",
"**/*.schema.json",
"**/*.d.ts"
],
"exclude": [
"dist",
"**/*.test.ts",
],
}