nixos-configs/apps/config/tsconfig.base.json
matt1432 cdf28bd4f5
All checks were successful
Discord / discord commits (push) Has been skipped
feat(apps): type check scripts in checkPhase
2025-03-07 16:51:01 -05:00

21 lines
485 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ESNext",
"lib": [
"ESNext"
],
"module": "preserve",
"moduleResolution": "bundler",
"baseUrl": ".",
"noEmit": true,
"newLine": "LF",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false
}
}