Nuxt/tsconfig.json

45 lines
936 B
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"compilerOptions": {
"esModuleInterop": false,
"allowSyntheticDefaultImports": 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,
"noEmit": true,
"noUnusedLocals": true,
2021-03-18 14:26:41 +00:00
"resolveJsonModule": true,
"types": [
"node"
],
"paths": {
"#app": [
"./packages/nuxt/src/app/index"
],
"#app/*": [
"./packages/nuxt/src/app/*"
],
"#head": [
"./packages/nuxt/src/head/runtime/index"
],
"#internal/nitro": [
"./node_modules/nitropack/dist/runtime"
],
"#internal/nitro/utils": [
"./node_modules/nitropack/dist/runtime/utils"
]
}
2021-04-09 13:48:39 +00:00
},
"exclude": [
"**/*/dist/*",
"**/.nuxt/**",
"**/nuxt.d.ts",
"**/examples/**",
"**/docs/**",
"**/playground/**",
"**/test/fixtures/**"
]
2021-03-18 14:26:41 +00:00
}