@ark7/lazyload
Version:
@ark7/lazyload delays loading of object creation. Object will not be loaded before accessing its properties.
21 lines (20 loc) • 492 B
JSON
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es2017", "dom"],
"allowSyntheticDefaultImports": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"target": "es2017",
"typeRoots": ["node_modules/@types"],
"plugins": [{
"transform": "./dist/transformer"
}],
"outDir": "dist"
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules"]
}