Skip to content

Commit

Permalink
fix(astro-angular): fix sourcemaps for build (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts authored Jun 17, 2023
1 parent 27a52e1 commit b9c7873
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 b9c7873

Please sign in to comment.