Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaoyingz committed Feb 29, 2024
1 parent 5d6241a commit 7ebfddb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/npm-tui/src/components/tui/form-lazy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import {
} from '@/components/ui/form'
import { JSONSchema7 } from 'json-schema'
import { Textarea } from '@/components/ui/textarea'
import { ajvResolver } from '@/lib/ajv-resolver.ts'
import { ajvResolver } from '@/lib/ajv-resolver'
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'
import { cn } from '@/lib/utils'
import React from 'react'
import { ActionResponse, executeAction } from '@/lib/action.ts'
import { ActionResponse, executeAction } from '@/lib/action'
import { RotateCw } from 'lucide-react'

interface InputAttrs {
Expand Down
3 changes: 2 additions & 1 deletion src/npm-tui/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }],
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

/* Output */
"declaration": true,
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts"],
"forceConsistentCasingInFileNames": true
}
}

0 comments on commit 7ebfddb

Please sign in to comment.