nixos-configs/modules/ags/config/tsconfig.json
matt1432 89c02b408d
All checks were successful
Discord / discord commits (push) Has been skipped
feat(ags): import fzf correctly with types
2024-03-19 15:10:18 -04:00

25 lines
509 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
}
}