mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-21 09:51:14 +00:00
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"paths": {
|
|
"App": ["./src/App.tsx"],
|
|
"api/*": ["./src/api/*"],
|
|
"chartSetup": ["./src/chartSetup.ts"],
|
|
"components/*": ["./src/components/*"],
|
|
"contexts/*": ["./src/contexts/*"],
|
|
"hooks/*": ["./src/hooks/*"],
|
|
"models/*": ["./src/models/*"],
|
|
"theme/*": ["./src/theme/*"],
|
|
"utils": ["./src/utils.ts"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true
|
|
},
|
|
"include": ["src"]
|
|
}
|