mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
26 lines
487 B
JSON
26 lines
487 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"noUnusedLocals": true,
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node",
|
|
"mocha",
|
|
"chai"
|
|
],
|
|
"paths": {
|
|
"#app": ["./packages/nuxt3/src/app/index"],
|
|
"#app/*": ["./packages/nuxt3/src/app/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/*/dist/*"
|
|
]
|
|
}
|