aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/src/schemas/compiler_options_schema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sol-compiler/src/schemas/compiler_options_schema.ts')
-rw-r--r--packages/sol-compiler/src/schemas/compiler_options_schema.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/sol-compiler/src/schemas/compiler_options_schema.ts b/packages/sol-compiler/src/schemas/compiler_options_schema.ts
index d4d1b6017..657b801ad 100644
--- a/packages/sol-compiler/src/schemas/compiler_options_schema.ts
+++ b/packages/sol-compiler/src/schemas/compiler_options_schema.ts
@@ -2,6 +2,7 @@ export const compilerOptionsSchema = {
id: '/CompilerOptions',
properties: {
contractsDir: { type: 'string' },
+ workspaceDir: { type: 'string' },
artifactsDir: { type: 'string' },
solcVersion: { type: 'string', pattern: '^\\d+.\\d+.\\d+$' },
compilerSettings: { type: 'object' },
@@ -19,6 +20,7 @@ export const compilerOptionsSchema = {
},
],
},
+ useDockerisedSolc: { type: 'boolean' },
},
type: 'object',
required: [],