Nuxt/tsconfig.json

31 lines
572 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,
"noUnusedLocals": true,
2021-03-18 14:26:41 +00:00
"resolveJsonModule": true,
"types": [
"node"
],
"paths": {
"#app": [
"./packages/nuxt3/src/app/index"
],
"#app/*": [
"./packages/nuxt3/src/app/*"
]
}
2021-04-09 13:48:39 +00:00
},
"exclude": [
"**/*/dist/*",
"**/.nuxt/**",
"**/nuxt.d.ts"
]
2021-03-18 14:26:41 +00:00
}