Created
August 1, 2017 14:03
-
-
Save cyrilletuzi/62fc3a5ae2e9f5957b95f161337b2be8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "./tsconfig.app.json", | |
"compilerOptions": { | |
"outDir": "../out-tsc/server", | |
/* For now, Node only understand CommonJS modules, so you can't stick to es2015 here */ | |
"module": "commonjs" | |
}, | |
"exclude": [ | |
"test.ts", | |
"**/*.spec.ts" | |
], | |
/* Additional informations to bootstrap Angular */ | |
"angularCompilerOptions": { | |
"entryModule": "app/app-server.module#AppServerModule" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment