fix pull problems

This commit is contained in:
Igor Carvalho 2023-07-26 18:31:15 -03:00
commit c69eb33d24
3 changed files with 4 additions and 3 deletions

View file

@ -68,7 +68,8 @@
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"format": "npx prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
"format": "npx prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"type-check": "tsc --noEmit --pretty --project tsconfig.json && vite"
},
"eslintConfig": {
"extends": [

View file

@ -15,7 +15,7 @@ export type APIClassType = {
input_types?: Array<string>;
output_types?: Array<string>;
documentation: string;
[key: string]: Array<string> | string | APITemplateType;
[key: string]: Array<string> | string | APITemplateType | undefined;
};
export type TemplateVariableType = {

View file

@ -6,7 +6,7 @@
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",