Skip to content

Instantly share code, notes, and snippets.

@crashmax-dev
Last active February 16, 2025 11:36
Show Gist options
  • Save crashmax-dev/7b9f70e608833f8e6dc425c1ae0d4318 to your computer and use it in GitHub Desktop.
Save crashmax-dev/7b9f70e608833f8e6dc425c1ae0d4318 to your computer and use it in GitHub Desktop.
{
"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"
]
}
/// <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