diff options
Diffstat (limited to 'packages/sol-compiler/src/schemas/compiler_options_schema.ts')
-rw-r--r-- | packages/sol-compiler/src/schemas/compiler_options_schema.ts | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/packages/sol-compiler/src/schemas/compiler_options_schema.ts b/packages/sol-compiler/src/schemas/compiler_options_schema.ts deleted file mode 100644 index c0766b625..000000000 --- a/packages/sol-compiler/src/schemas/compiler_options_schema.ts +++ /dev/null @@ -1,27 +0,0 @@ -export const compilerOptionsSchema = { - id: '/CompilerOptions', - properties: { - contractsDir: { type: 'string' }, - artifactsDir: { type: 'string' }, - solcVersion: { type: 'string', pattern: '^\\d+.\\d+.\\d+$' }, - compilerSettings: { type: 'object' }, - contracts: { - oneOf: [ - { - type: 'string', - pattern: '^\\*$', - }, - { - type: 'array', - items: { - type: 'string', - }, - }, - ], - }, - useDockerisedSolc: { type: 'boolean' }, - }, - type: 'object', - required: [], - additionalProperties: false, -}; |