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