mirror of
https://github.com/golang/go
synced 2024-11-19 01:34:40 -07:00
08b1e0510c
This change also puts more structure into the viewer. Adds an enum for events that we'll issue and a few more elements to organize things. Change-Id: I39c7c53422779348ca05f051c6b0b07d22ad6a00 Reviewed-on: https://go-review.googlesource.com/26656 Reviewed-by: Alan Donovan <adonovan@google.com>
17 lines
479 B
JSON
17 lines
479 B
JSON
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file contains configuration for the Typescript
|
|
// compiler if you're running it locally for typechecking
|
|
// and other tooling. The Typescript compiler is
|
|
// not necessary to do development on this project.
|
|
|
|
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"strictNullChecks": true,
|
|
"target": "es2015"
|
|
}
|
|
}
|