Last active
February 16, 2025 11:36
-
-
Save crashmax-dev/7b9f70e608833f8e6dc425c1ae0d4318 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ESNext", | |
"jsx": "preserve", | |
"lib": [ | |
"ESNext", | |
"DOM", | |
"DOM.Iterable" | |
], | |
"baseUrl": ".", | |
"rootDir": "src", | |
"module": "ESNext", | |
"moduleResolution": "Node", | |
"resolveJsonModule": true, | |
"strict": true, | |
"strictPropertyInitialization": false, | |
"noImplicitAny": false, | |
"noImplicitThis": true, | |
"declaration": false, | |
"outDir": "dist", | |
"allowSyntheticDefaultImports": true, | |
"esModuleInterop": true, | |
"skipLibCheck": true, | |
"types": ["@histoire/plugin-vue/components"] | |
}, | |
"include": [ | |
"src/**/*", | |
"src/**/*.vue" | |
], | |
"exclude": [ | |
"node_modules", | |
"dist/**/*", | |
"src/**/*.spec.ts" | |
] | |
} |
This file contains hidden or 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
/// <reference types="vite/client" /> | |
/// <reference types="@histoire/plugin-vue/components" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment