Skip to content

Commit

Permalink
Merge pull request #39 from smartive/fix/build
Browse files Browse the repository at this point in the history
fix: build
  • Loading branch information
dwirz authored Mar 28, 2023
2 parents 854e3a9 + 3db981d commit 15e302b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
8 changes: 2 additions & 6 deletions config/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": [
"es2015"
]
"lib": ["es2015"]
},
"include": [
"../src/**/*"
]
"include": ["../src/**/*"]
}
3 changes: 2 additions & 1 deletion config/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"outDir": "../"
"outDir": "../",
"types": []
},
"exclude": []
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"extends": "./config/tsconfig.base.json",
"compilerOptions": {
"rootDir": "./",
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"watch": true,
"sourceMap": true
}
},
"include": ["./src/**/*", "./test/**/*"]
}

0 comments on commit 15e302b

Please sign in to comment.