remove synthetic imports

This commit is contained in:
Niccolo Borgioli 2023-01-31 01:30:31 +01:00
parent 80c114679b
commit 82cc6b8c70
No known key found for this signature in database
GPG Key ID: D93C615F75EE4F0B
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,5 @@
import React, { useEffect, useState } from 'react'
import * as React from 'react'
import { useEffect, useState } from 'react'
export type FieldOptions<G extends string = 'onChange', S extends string = 'value'> = {
extractor?: useFormExtractor

View File

@ -6,8 +6,7 @@
"jsx": "react",
"outDir": "./dist",
"declaration": true,
"strict": true,
"allowSyntheticDefaultImports": true
"strict": true
},
"include": ["./lib"]
}