Nuxt/tsconfig.json

19 lines
348 B
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"compilerOptions": {
"esModuleInterop": true,
"target": "ESNext",
"module": "ESNext",
2021-03-18 14:26:41 +00:00
"moduleResolution": "Node",
"strict": false,
"allowJs": true,
"resolveJsonModule": true,
"types": [
"node",
"jest"
],
"paths": {
"nuxt/app/composables": ["./packages/app/src/composables"]
}
2021-03-18 14:26:41 +00:00
}
}