mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 06:31:27 -07:00
25 lines
702 B
JSON
25 lines
702 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Default",
|
|
"include": ["${configDir}/**/*.ts", "${configDir}/**/*.tsx"],
|
|
"exclude": ["${configDir}/node_modules/", "${configDir}/dist/", "${configDir}/oxlint.config.ts"],
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSources": false,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "bundler",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitOverride": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|