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

23 lines
588 B
JSON
Raw Normal View History

2021-07-31 14:00:28 -08:00
{
"compilerOptions": {
"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"]
2021-07-31 14:00:28 -08:00
},
"exclude": ["node_modules", ".nuxt", "dist"]
2021-07-31 14:00:28 -08:00
}