Skip to content

Commit

Permalink
fix(create-analog): set composite to false and include ts files in ts…
Browse files Browse the repository at this point in the history
…config (#76)

Closes #75
  • Loading branch information
KylerJohnsonDev authored Sep 3, 2022
1 parent 0a94b62 commit c287041
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/create-analog/template-angular-v14/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"composite": true,
"composite": false,
"outDir": "./out-tsc/app",
"types": []
},
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"]
"include": ["src/**/*.d.ts", "src/**/*.ts"]
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"composite": true,
"composite": false,
"outDir": "./out-tsc/spec",
"types": ["node", "vitest/globals"]
},
Expand Down

0 comments on commit c287041

Please sign in to comment.