23 lines
529 B
JSON
23 lines
529 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "esnext",
|
||
|
|
"lib": ["es2023"],
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"module": "nodenext",
|
||
|
|
"moduleResolution": "nodenext",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"types": ["node"],
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"declaration": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"jsxImportSource": "vue"
|
||
|
|
}
|
||
|
|
}
|