Nuxt/tsconfig.json

25 lines
442 B
JSON
Raw Normal View History

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",
"module": "ESNext",
2021-03-18 14:26:41 +00:00
"moduleResolution": "Node",
"strict": false,
"allowJs": true,
"noUnusedLocals": true,
2021-03-18 14:26:41 +00:00
"resolveJsonModule": true,
"types": [
"node",
"mocha",
"chai",
"@nuxt/app",
"@nuxt/nitro"
2021-04-09 13:48:39 +00:00
]
},
"exclude": [
"./packages/*/dist/*",
"./modules/*/dist/*"
]
2021-03-18 14:26:41 +00:00
}