mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-14 20:19:35 +01:00
34 lines
639 B
JSON
34 lines
639 B
JSON
{
|
|
"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": "./artsite",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"@types/node",
|
|
"@nuxt/content",
|
|
"@nuxt/types",
|
|
"@nuxtjs/axios",
|
|
"@nuxtjs/sentry",
|
|
"nuxt-i18n"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".nuxt",
|
|
"dist",
|
|
"build"
|
|
]
|
|
}
|