Files
arne-drums/tsconfig.json
2024-03-31 14:56:26 +02:00

30 lines
591 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.web.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"module": "esnext",
"target": "esnext",
"allowJs": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
},
"jsxFactory": "h",
"jsxFragmentFactory": "frag",
"jsx": "react"
},
"include": [
"./src/**/*"
],
"references": [
{
"path": "./tsconfig.config.json"
}
]
}