nixos-configs/apps/tsconfig.json
matt1432 655eac9ad6
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(extract-subs): move to apps and split up code better
2024-11-15 11:37:58 -05:00

25 lines
532 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// Env
"target": "ESNext",
"lib": [
"ESNext"
],
// Module
"module": "nodenext",
"moduleResolution": "bundler",
"baseUrl": ".",
// Emit
"noEmit": true,
"newLine": "LF",
// Interop
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
// Type Checking
"strict": true,
"noImplicitAny": false
}
}