mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
34 lines
1 KiB
JSON
34 lines
1 KiB
JSON
{
|
|
"$schema": "https://www.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"types": ["vite/client"],
|
|
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"allowUnreachableCode": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"files": ["svelte.config.ts"],
|
|
"include": ["resources/**/*", "src/**/*", "tests/**/*"]
|
|
}
|