2018-07-11 06:38:37 +00:00
|
|
|
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
import typescript from 'rollup-plugin-typescript2';
|
2018-07-11 06:39:35 +00:00
|
|
|
import node from 'rollup-plugin-node-resolve';
|
2018-07-11 06:38:37 +00:00
|
|
|
|
|
|
|
export default {
|
2018-09-17 11:49:18 +00:00
|
|
|
input: "src/turbo-visualizer.ts",
|
2018-07-11 06:39:35 +00:00
|
|
|
plugins: [node(), typescript({abortOnError:false})],
|
2018-09-17 11:49:18 +00:00
|
|
|
output: {file: "build/turbolizer.js", format: "iife", sourcemap: true}
|
2018-07-11 06:38:37 +00:00
|
|
|
};
|