39 lines
781 B
JSON
39 lines
781 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "../shared/tsconfig.web.jsonc",
|
|
"compilerOptions": {
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@@/*": ["../frontend-shared/*"]
|
|
},
|
|
"typeRoots": [
|
|
"./@types",
|
|
"./node_modules/@types",
|
|
"./node_modules/@vue-macros",
|
|
"./node_modules"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"vitest/importMeta"
|
|
],
|
|
"jsx": "preserve"
|
|
},
|
|
"include": [
|
|
"./lib/**/*.ts",
|
|
"./src/**/*.ts",
|
|
"./src/**/*.vue",
|
|
"./test/**/*.ts",
|
|
"./test/**/*.vue",
|
|
"./@types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".storybook/**/*"
|
|
]
|
|
}
|