42 lines
967 B
JSON
42 lines
967 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"types": ["vite/client"],
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"paths": {
|
|
"@components/*": ["./src/components/*"],
|
|
"@services/*": ["./src/services/*"],
|
|
"@contexts/*": ["./src/contexts/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@src/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|