27 lines
657 B
JSON
27 lines
657 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./*"]
|
|
},
|
|
"types": [
|
|
"@nuxt/types",
|
|
"@nuxtjs/axios",
|
|
"@nuxt/content",
|
|
"@types/node"
|
|
]
|
|
},
|
|
"exclude": ["node_modules", ".nuxt", "dist"]
|
|
}
|