mirror of
https://github.com/unraid/api.git
synced 2026-04-26 01:08:53 -05:00
6669a963af
Co-authored-by: Eli Bosley <ekbosley@gmail.com> Co-authored-by: Pujit Mehrotra <pujit@lime-technology.com> Co-authored-by: mdatelle <mike@datelle.net> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Zack Spear <zackspear@users.noreply.github.com>
32 lines
858 B
JSON
32 lines
858 B
JSON
{
|
|
"extends": "./tsconfig.app.json",
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/styles": ["./src/styles"],
|
|
"@/components": ["./src/components"],
|
|
"@/composables": ["./src/composables"],
|
|
"@/lib": ["./src/lib"],
|
|
"@/types": ["./src/types"],
|
|
"@/theme": ["./src/theme"]
|
|
},
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": ["tailwind.config.ts"],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"./tailwind.config.ts",
|
|
"src/theme/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "**/*.copy.vue", "**/*copy.vue"],
|
|
"references": [{ "path": "./tsconfig.test.json" }]
|
|
}
|