Files
arne-drums/tsconfig.json
Daniel Ledda ff6ffa57ce update
2024-05-31 17:27:04 +02:00

32 lines
632 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/**/*",
"./prod.env.ts",
"./dev.env.ts"
],
"references": [
{
"path": "./tsconfig.config.json"
}
]
}