-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
$ mber new now transpiles tsconfig.json correctly
- Loading branch information
Showing
3 changed files
with
33 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,22 @@ | ||
export default config; | ||
|
||
// Type declarations for | ||
// import config from './config/environment' | ||
|
||
// For now these need to be managed by the developer | ||
// since different ember addons can materialize new entries. | ||
/** | ||
* type declarations for | ||
* import config from './config/environment' | ||
* | ||
* for now these need to be managed by the developer | ||
* since different ember addons can materialize new entries. | ||
*/ | ||
declare const config: { | ||
APP: any; | ||
app: app; | ||
environment: any; | ||
modulePrefix: string; | ||
podModulePrefix: string; | ||
locationType: string; | ||
rootURL: string; | ||
moduleprefix: string; | ||
podmoduleprefix: string; | ||
locationtype: string; | ||
rooturl: string; | ||
[propname: string]: any; | ||
}; | ||
|
||
interface app { | ||
[propname: string]: any; | ||
} |
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
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