https://github.com/angular/angular
Raw File
Tip revision: ae34e6cabdb6b7d4e6332ac18e94c7d6c28c7191 authored by Paul Gschwendtner on 10 January 2023, 14:04:24 UTC
fix(language-service): expose `package.json` for vscode extension resolution (#48678)
Tip revision: ae34e6c
version.ts
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */

/**
 * @module
 * @description
 * Entry point for all public APIs of the compiler package.
 */

import {Version} from './util';

export const VERSION = new Version('0.0.0-PLACEHOLDER');
back to top