This file contains hidden or 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
| import * as React from "react"; | |
| import * as ReduxForm from "redux-form"; | |
| interface MarkdownEditorProps extends ReduxForm.WrappedFieldProps { | |
| } | |
| interface MarkdownEditorState { | |
| } |
This file contains hidden or 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
| { | |
| "configurations": [ | |
| { | |
| "name": "Current TS File", | |
| "type": "node", | |
| "request": "launch", | |
| "program": "${workspaceRoot}/node_modules/.bin/ts-node", | |
| "args": ["${relativeFile}"], | |
| "protocol": "inspector" | |
| } |
This file contains hidden or 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
| { | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Launch via NPM", | |
| "runtimeExecutable": "npm", | |
| "runtimeArgs": [ | |
| "run-script", | |
| "start:debug:ts" |
This file contains hidden or 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
| { | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "attach", | |
| "name": "Attach", | |
| "port": 9229 | |
| } | |
| ] | |
| } |
This file contains hidden or 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
| "scripts": { | |
| "build:ts": "tsc", | |
| "start": "node index.js", | |
| "start:watch": "nodemon index.js", | |
| "start:debug": "node --inspect index.js", | |
| "start:debug:brk": "node --inspect-brk index.js", | |
| "start:debug:ts": "node --inspect --require ts-node/register index.ts", | |
| "start:debug:ts:brk": "node --inspect-brk --require ts-node/register index.ts" | |
| } |
This file contains hidden or 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
| // exporting * | |
| declare module "a" { | |
| const a: number | |
| export = a | |
| } | |
| // exporting default | |
| declare module "b" { | |
| const a: number | |
| export default a |
This file contains hidden or 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
| version: "2" | |
| services: | |
| # fix-postgresql-permissions: | |
| # image: "bitnami/postgresql:latest" | |
| # user: root | |
| # command: chown -R 1001:1001 /bitnami | |
| # volumes: | |
| # - ./postgresql:/bitnami/postgresql | |
| postgresql: |
OlderNewer