29 lines
718 B
JSON
29 lines
718 B
JSON
|
|
{
|
||
|
|
"extends": "../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"removeComments": false,
|
||
|
|
"sourceMap": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"~/*": ["./*"],
|
||
|
|
"@/*": ["./*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["**/*", ".nuxt/nuxt.d.ts"]
|
||
|
|
}
|