2016-07-26 08:27:44 -06:00
|
|
|
// 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,
|
2016-08-10 09:43:06 -06:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"target": "es2015"
|
2016-07-26 08:27:44 -06:00
|
|
|
}
|
|
|
|
}
|