├── .editorconfig ├── .gitignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── documentation └── preview.gif ├── e2e ├── package-lock.json ├── package.json ├── project-fixture │ ├── main.ts │ └── tsconfig.json ├── server-fixture │ └── index.js └── tests │ ├── _helpers.js │ ├── completionEntryDetails.js │ ├── completions.js │ ├── embeddedSupport.js │ ├── errors.js │ ├── format.js │ ├── jsxTagClosing.js │ ├── outliningSpans.js │ ├── quickInfo.js │ ├── quickfix.js │ ├── references.js │ └── signatureHelp.js ├── package.json ├── src ├── config.ts ├── configuration.ts ├── embeddedSupport.ts ├── html-template-language-service.ts ├── index.ts ├── substitutions.ts └── virtual-document-provider.ts ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /documentation/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/documentation/preview.gif -------------------------------------------------------------------------------- /e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/package-lock.json -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/project-fixture/main.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/project-fixture/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/project-fixture/tsconfig.json -------------------------------------------------------------------------------- /e2e/server-fixture/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/server-fixture/index.js -------------------------------------------------------------------------------- /e2e/tests/_helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/_helpers.js -------------------------------------------------------------------------------- /e2e/tests/completionEntryDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/completionEntryDetails.js -------------------------------------------------------------------------------- /e2e/tests/completions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/completions.js -------------------------------------------------------------------------------- /e2e/tests/embeddedSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/embeddedSupport.js -------------------------------------------------------------------------------- /e2e/tests/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/errors.js -------------------------------------------------------------------------------- /e2e/tests/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/format.js -------------------------------------------------------------------------------- /e2e/tests/jsxTagClosing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/jsxTagClosing.js -------------------------------------------------------------------------------- /e2e/tests/outliningSpans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/outliningSpans.js -------------------------------------------------------------------------------- /e2e/tests/quickInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/quickInfo.js -------------------------------------------------------------------------------- /e2e/tests/quickfix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/quickfix.js -------------------------------------------------------------------------------- /e2e/tests/references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/references.js -------------------------------------------------------------------------------- /e2e/tests/signatureHelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/e2e/tests/signatureHelp.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/configuration.ts -------------------------------------------------------------------------------- /src/embeddedSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/embeddedSupport.ts -------------------------------------------------------------------------------- /src/html-template-language-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/html-template-language-service.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/substitutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/substitutions.ts -------------------------------------------------------------------------------- /src/virtual-document-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/src/virtual-document-provider.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/typescript-lit-html-plugin/HEAD/tslint.json --------------------------------------------------------------------------------