Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
typescript({
tsconfig: isDevelopmentBuild
? 'tsconfig.development.json'
- : 'tsconfig.json'
+ : 'tsconfig.production.json'
}),
del({
targets: ['lib/*']
"extends": "./tsconfig.json",
"compilerOptions": {
"sourceMap": true
- }
+ },
+ "exclude": ["node_modules", "lib", "examples/typescript/**/*.ts"]
}
--- /dev/null
+{
+ "extends": "./tsconfig.json",
+ "exclude": ["node_modules", "lib", "examples/typescript/**/*.ts"]
+}
+++ /dev/null
-{
- "extends": "./tsconfig.json",
- "exclude": ["examples/typescript/**/*.ts"]
-}
{
- "tsconfig": "./tsconfig.tsdoc.json",
+ "tsconfig": "./tsconfig.production.json",
"entryPoints": ["src"],
"out": "docs",
"readme": "none"