-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update ts config and add dev command
- Loading branch information
1 parent
e4eed52
commit 065c513
Showing
4 changed files
with
50 additions
and
11 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// TODO: remove to run ts checks | ||
// @ts-nocheck | ||
|
||
import { reactive } from '@vue/reactivity' | ||
import { | ||
values, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
{ | ||
"compilerOptions": { | ||
"declaration": true, // Generate .d.ts files | ||
"emitDeclarationOnly": true, // Only emit type definitions, no JS files | ||
"skipLibCheck": true, | ||
"strict": true | ||
}, | ||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue", "src/index.js", "src/index.js"], | ||
"exclude": ["node_modules", "dist"] | ||
} | ||
"compilerOptions": { | ||
"declaration": true, // Generate .d.ts files | ||
"emitDeclarationOnly": true, // Only emit type definitions, no JS files | ||
"skipLibCheck": true, | ||
"moduleResolution": "node", // Import path with an index file | ||
"allowJs": true, // Allow importing js modules | ||
"noImplicitAny": true, // Turn off to remove implicit any type errors (dev only) | ||
"strict": false | ||
}, | ||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.vue", "src/index.js", "src/index.js"], | ||
"exclude": ["node_modules", "dist"] | ||
} |