nixos-configs/modules/ags/config/tsconfig.json
matt1432 9a9cfc13f6
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(ags): abstract appL and clip with SortedList
2024-05-01 15:03:42 -04:00

25 lines
507 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022"],
"noEmit": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"fzf": ["./node_modules/fzf/dist/types"]
},
"typeRoots": [
"./types",
"./global-types.d.ts",
"./node_modules"
],
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}