Nuxt/tsconfig.json
Daniel Roe efabacd8e2
feat(app): asyncData with global state and explicit key (#37)
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
Co-authored-by: Sébastien Chopin <seb@nuxtjs.com>
2021-04-03 12:03:20 +02:00

19 lines
348 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"strict": false,
"allowJs": true,
"resolveJsonModule": true,
"types": [
"node",
"jest"
],
"paths": {
"nuxt/app/composables": ["./packages/app/src/composables"]
}
}
}