15 lines
396 B
JSON
15 lines
396 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"jsxImportSource": "vue",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["vite-env.d.ts", "./**/*.ts", "./**/*.tsx", "./**/*.vue"]
|
|
}
|