nixos-configs/modules/desktop/display-manager/ags/tsconfig.json

26 lines
549 B
JSON
Raw Normal View History

2024-03-22 23:31:37 -04:00
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
2024-07-25 23:24:19 -04:00
"lib": ["ES2022"],
"noEmit": true,
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
2024-03-22 23:31:37 -04:00
"allowJs": true,
"checkJs": true,
"strict": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
2024-07-25 23:24:19 -04:00
"fzf": ["./node_modules/fzf/dist/types"]
2024-03-22 23:31:37 -04:00
},
"typeRoots": [
"./types",
2024-07-25 23:24:19 -04:00
"./global-types.d.ts",
2024-03-22 23:31:37 -04:00
"./node_modules"
],
2024-07-25 23:24:19 -04:00
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
2024-03-22 23:31:37 -04:00
}