This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(demo): add support for running a demo of the widgets locally. (#155)
- Loading branch information
1 parent
41dcf1e
commit 2ceac6f
Showing
4 changed files
with
61 additions
and
7 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"angularCompilerOptions": { | ||
"genDir": "compiled", | ||
"skipTemplateCodegen": true, | ||
"strictMetadataEmit": true | ||
}, | ||
"atom": { "rewriteTsconfig": false }, | ||
"buildOnSave": false, | ||
"compileOnSave": false, | ||
"compilerOptions": { | ||
"allowSyntheticDefaultImports": true, | ||
"allowUnreachableCode": false, | ||
"baseUrl": ".", | ||
"declaration": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"inlineSources": true, | ||
"lib": [ "dom", "es6" ], | ||
"module": "es2015", | ||
"moduleResolution": "node", | ||
"noEmitHelpers": false, // Planner and demo won't run when true | ||
"noImplicitAny": true, | ||
"noUnusedLocals": false, | ||
"noUnusedParameters": false, | ||
"outDir": "dist", | ||
"paths": { | ||
"@angular/core": ["node_modules/@angular/core"], | ||
"@angular/http": ["node_modules/@angular/http"], | ||
"@angular/router": ["node_modules/@angular/router"], | ||
"rxjs/*": ["node_modules/rxjs/*"] | ||
}, | ||
"rootDir": ".", | ||
"skipLibCheck": true, | ||
"sourceMap": true, | ||
"strictNullChecks": false, | ||
"stripInternal": true, | ||
"suppressImplicitAnyIndexErrors": true, | ||
"target": "es5" | ||
}, | ||
"files": [ | ||
"src/app/index.ts" | ||
] | ||
} |
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