nixos-configs/apps/config/tsconfig.base.json

22 lines
485 B
JSON
Raw Normal View History

{
"$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
}
}