mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"paths": {
|
|
"#app": [
|
|
"./packages/nuxt/src/app/index"
|
|
],
|
|
"#app/*": [
|
|
"./packages/nuxt/src/app/*"
|
|
],
|
|
"#internal/nitro": [
|
|
"./node_modules/nitropack/dist/runtime"
|
|
],
|
|
"#internal/nitro/app": [
|
|
"./node_modules/nitropack/dist/runtime/app"
|
|
],
|
|
"#internal/nitro/utils": [
|
|
"./node_modules/nitropack/dist/runtime/utils"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/dist/**",
|
|
"**/.nuxt/**",
|
|
"**/nuxt.d.ts",
|
|
"**/examples/**",
|
|
"**/docs/**",
|
|
"**/playground/**",
|
|
"**/test/fixtures/**"
|
|
]
|
|
}
|