mirror of
https://github.com/andatoshiki/toshiki-home-nuxt3.git
synced 2026-06-05 21:46:29 +00:00
36 lines
771 B
JSON
Executable File
36 lines
771 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "ES2018",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"@types/node",
|
|
/* Nuxt types */
|
|
"@nuxt/types",
|
|
"@nuxt/content",
|
|
"@nuxtjs/axios",
|
|
"@nuxtjs/moment",
|
|
"nuxt-windicss",
|
|
"@nuxtjs/color-mode",
|
|
"@nuxt/image",
|
|
"@nuxtjs/firebase",
|
|
/* Additional types */
|
|
"@types/prismjs"
|
|
],
|
|
"typeRoots": ["./@types"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|