2021-03-18 14:26:41 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
2021-04-09 13:48:39 +00:00
|
|
|
"skipLibCheck": true,
|
2021-03-18 14:26:41 +00:00
|
|
|
"target": "ESNext",
|
2021-03-28 20:14:04 +00:00
|
|
|
"module": "ESNext",
|
2021-03-18 14:26:41 +00:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"strict": false,
|
|
|
|
"allowJs": true,
|
2021-06-16 11:18:38 +00:00
|
|
|
"noUnusedLocals": true,
|
2021-03-18 14:26:41 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"types": [
|
|
|
|
"node",
|
2021-04-20 11:57:18 +00:00
|
|
|
"jest",
|
|
|
|
"@nuxt/app",
|
|
|
|
"@nuxt/nitro",
|
2021-04-09 13:48:39 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": ["./packages/*/dist/*"]
|
2021-03-18 14:26:41 +00:00
|
|
|
}
|