mirror of
https://github.com/krisk/Fuse.git
synced 2026-01-18 16:16:25 +00:00
- 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
16 lines
339 B
JSON
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/**/*"]
|
|
}
|