2019-11-15 04:22:18 +00:00
|
|
|
{
|
2020-08-09 01:08:44 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2018",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"ESNext.AsyncIterable",
|
|
|
|
"DOM"
|
|
|
|
],
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"~/*": [
|
|
|
|
"./*"
|
|
|
|
],
|
|
|
|
"@/*": [
|
|
|
|
"./*"
|
|
|
|
]
|
2020-07-26 18:00:01 +00:00
|
|
|
},
|
2020-08-09 01:08:44 +00:00
|
|
|
"types": [
|
|
|
|
"@types/node",
|
|
|
|
"@nuxt/types",
|
|
|
|
"@nuxt/content"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
".nuxt",
|
|
|
|
"dist"
|
2020-07-26 18:00:01 +00:00
|
|
|
]
|
2020-08-09 01:08:44 +00:00
|
|
|
}
|