mealie/frontend/tsconfig.json

23 lines
585 B
JSON
Raw Normal View History

2021-07-31 22:00:28 +00:00
{
"compilerOptions": {
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "Node",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
2021-07-31 22:00:28 +00:00
"esModuleInterop": true,
"allowJs": true,
"sourceMap": true,
"strict": true,
"noEmit": true,
"experimentalDecorators": true,
2021-08-02 03:24:47 +00:00
"strictPropertyInitialization": false,
2021-07-31 22:00:28 +00:00
"baseUrl": ".",
"paths": {
"~/*": ["./*"],
"@/*": ["./*"]
2021-07-31 22:00:28 +00:00
},
2021-08-02 03:24:47 +00:00
"types": ["@nuxt/types", "@nuxtjs/axios", "@types/node", "nuxt-i18n", "@nuxtjs/auth-next"]
2021-07-31 22:00:28 +00:00
},
"exclude": ["node_modules", ".nuxt", "dist"]
2021-07-31 22:00:28 +00:00
}