31 lines
651 B
JSON
31 lines
651 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"noUncheckedIndexedAccess": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"./*"
|
|
],
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
},
|
|
"extends": "./.nuxt/tsconfig.json"
|
|
}
|