1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-06 05:55:23 +02:00
mealie/frontend/tsconfig.json

36 lines
787 B
JSON
Raw Normal View History

2021-07-31 14:00:28 -08:00
{
"compilerOptions": {
"jsx": "preserve",
2021-07-31 14:00:28 -08:00
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
2021-07-31 14:00:28 -08:00
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
2021-08-01 19:24:47 -08:00
"strictPropertyInitialization": false,
2021-07-31 14:00:28 -08:00
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
2021-07-31 14:00:28 -08:00
},
"types": [
"@nuxt/types",
"@nuxtjs/axios",
"@types/node",
"@nuxtjs/i18n",
"@nuxtjs/auth-next",
"@nuxtjs/vuetify",
"@types/sortablejs"
]
2021-07-31 14:00:28 -08:00
},
"vueCompilerOptions": {
"target": 2.7
},
"include": ["**/*", ".eslintrc.js"],
"exclude": ["node_modules", ".nuxt", "dist"]
2021-07-31 14:00:28 -08:00
}