Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import webpackRxJsExternals from './utils/webpackRxjsExternals';

export const rxjs = [webpackRxJsExternals()];

export const lodash = [
export const lodash : any = [
function (context, request, callback) {
if (request.startsWith('lodash/')) {
const subModule = request.split('/')[1];
Expand All @@ -25,7 +25,7 @@ export const lodash = [
];

// full imports
export const thirdParties = [{
export const thirdParties : any = [{
'lodash': {
root: '_',
commonjs: 'lodash',
Expand Down
File renamed without changes.
13 changes: 13 additions & 0 deletions packages/frint-config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"outDir": "./lib",
"target": "es5",
"lib": [ "es2015", "dom" ],
"module": "commonjs",
"declaration": true,
"sourceMap": true
},
"include": [
"./src/**/*.ts"
]
}