Files
arne-drums/tsconfig.json
2023-02-26 22:14:43 +01:00

32 lines
644 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/*"],
"assets/*": ["assets/*"]
},
"jsxFactory": "h",
"jsxFragmentFactory": "frag",
"jsx": "react"
},
"include": [
"./src/**/*",
"./assets/**/*"
],
"references": [
{
"path": "./tsconfig.config.json"
}
]
}