Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"copy": "copyfiles LICENSE README.md package.json dist",
"postversion": "git push upstream && git push upstream --tags",
"coveralls": "cat coverage/coverage.lcov | coveralls",
"typedoc": "typedoc --readme none --theme ./docs-theme --module commonjs --out ./example-dist/docs --tsconfig ./src/shared/interfaces/tsconfig.json ."
"typedoc": "cd ./src/shared/interfaces && typedoc --readme none --theme ../../../docs-theme --module commonjs --out ../../../example-dist/docs --tsconfig ./tsconfig.json ./json-editor-config.ts"
},
"peerDependencies": {
"@angular/common": "^4.0.0",
Expand Down Expand Up @@ -97,7 +97,7 @@
"ts-helpers": "^1.1.1",
"ts-node": "1.2.1",
"tslint": "^5.0.0",
"typedoc": "^0.5.5",
"typedoc": "0.9.0",
"typescript": "~2.3.0",
"util-deprecate": "^1.0.2",
"zone.js": "^0.8.4"
Expand Down
3 changes: 3 additions & 0 deletions src/shared/interfaces/json-editor-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { CustomShortcutKeys } from './custom-shortcut-keys';
import { TabsConfig } from './tabs-config';
import { CustomFormatValidation } from './custom-format-validation';

// HACK for docs
import '../../rxjs-operators';

export interface JsonEditorConfig {
/**
* If set, displays the switch that can enable admin mode where any field can be edited.
Expand Down