diff --git a/init/vendee.config.ts b/init/vendee.config.ts index 21f51de..a141ce0 100644 --- a/init/vendee.config.ts +++ b/init/vendee.config.ts @@ -26,16 +26,16 @@ const config: Config = { /** * List of source files for compilation in contract directory in **glob** format * @see https://github.com/isaacs/node-glob - * @default 'latest' + * @default ['**\/*.tsol', '**\/*.sol'] */ include: ['**/*.tsol', '**/*.sol'], /** * List of source files excluded from compilation in contracts directory in **glob** format * @see https://github.com/isaacs/node-glob - * @default [''] + * @default ['**\/interface/*', '**\/interfaces/*'] */ - exclude: ['interface/*'] + exclude: ['**/interface/*', '**/interfaces/*'] }, /** diff --git a/package.json b/package.json index 459a6d0..79c8826 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vendee", - "version": "1.1.2", + "version": "1.1.3", "description": "TVM-Solidity contract development framework", "scripts": { "build": "tsc --build .", diff --git a/src/cli/config/validation.ts b/src/cli/config/validation.ts index 7f99580..8cb7731 100644 --- a/src/cli/config/validation.ts +++ b/src/cli/config/validation.ts @@ -7,7 +7,7 @@ const defaults: VendeeConfig = { compiler: 'latest', linker: 'latest', include: ['**/*.tsol', '**/*.sol'], - exclude: [] + exclude: ['**/interface/*', '**/interfaces/*'] }, networks: { local: {