nixos-configs/modules/ags/config/tsconfig.json

18 lines
373 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
2024-01-22 10:23:32 -05:00
"lib": ["ES2022"],
"noEmit": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitAny": false,
"baseUrl": ".",
2024-01-22 10:23:32 -05:00
"typeRoots": ["./types"],
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}