Skip to content

Commit

Permalink
fix: removing build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
willmendesneto committed Feb 4, 2023
1 parent f0471dc commit 88559aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
3 changes: 1 addition & 2 deletions tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"outDir": "./out-tsc/app",
"types": ["node"]
},
"include": ["src/**/*.ts"],
"files": ["src/main.ts", "src/polyfills.ts"],
"exclude": ["src/test.ts", "src/**/*.spec.ts"]
"exclude": ["src/test.ts", "src/**/*.spec.ts", "src/app/app.server.module.ts", "src/app/main.module.ts"]
}
9 changes: 2 additions & 7 deletions tsconfig.server.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@
"compilerOptions": {
"outDir": "./out-tsc/app-server",
"strictNullChecks": false,
"types": [
"node"
]
"types": ["node"]
},
"files": [
"src/main.server.ts",
"server.ts"
],
"files": ["src/main.server.ts", "src/app/app.server.module.ts", "server.ts"],
"angularCompilerOptions": {
"entryModule": "./src/app/app.server.module#AppServerModule"
}
Expand Down

0 comments on commit 88559aa

Please sign in to comment.