Nuxt/tsconfig.json

26 lines
487 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"
],
"paths": {
"#app": ["./packages/nuxt3/src/app/index"],
"#app/*": ["./packages/nuxt3/src/app/*"]
}
2021-04-09 13:48:39 +00:00
},
"exclude": [
"**/*/dist/*"
]
2021-03-18 14:26:41 +00:00
}