Skip to content

Commit

Permalink
fix(astro-angular): fix sourcemaps for build
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Jun 17, 2023
1 parent 2966d73 commit cc61f3a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/astro-angular/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"declaration": false,
"inlineSourceMap": true,
"sourceMap": false,
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"types": [],
"paths": {
"@analogjs/vite-plugin-angular": [
Expand All @@ -17,6 +17,7 @@
"jest.config.ts",
"**/*.spec.ts",
"**/*.test.ts",
"vite.config.ts"
"vite.config.ts",
"src/test-setup.ts"
]
}

0 comments on commit cc61f3a

Please sign in to comment.