Files
piratepoet/packages/js/components/tsconfig.json
Jan Jakes 8fbe37dc4d Add TypeScript config for @mailpoet/components
This handles both type checking and type declaration emitting.

[MAILPOET-5015]
2023-03-22 09:38:22 +01:00

11 lines
210 B
JSON

{
"extends": "../../../tsconfig.base.json",
"include": ["src/**/*"],
"compilerOptions": {
"rootDir": "src",
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "build-types"
}
}