21 lines
567 B
JSON
21 lines
567 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"declaration": true,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"declarationDir": "dist",
|
||
|
|
"jsx": "preserve",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"types": ["vite/client"]
|
||
|
|
},
|
||
|
|
"include": ["index.ts", "components/**/*.vue", "components/**/*.ts", "env.d.ts"]
|
||
|
|
}
|