Fuse/tsconfig.json
Kiro Risk e74a9ef305
Changed bundler to Rollup (#367)
- Changed bundler to Rollup
- Added ES6 modules for bundlers and browsers (fixed #262)
- Added CommonJS builds
- Added UMD builds
- Name change so that .min actually reflects the minified version
2020-03-23 08:22:20 -07:00

16 lines
339 B
JSON

{
"compilerOptions": {
"module": "es6",
"lib": ["es6"],
"target": "es6",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"declaration": true,
"noImplicitAny": true,
"declarationDir": "./dist"
},
"include": ["src/*", "src/**/*"]
}