2024-01-13 16:07:33 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
"module": "ES2022",
|
2024-01-22 10:23:32 -05:00
|
|
|
"lib": ["ES2022"],
|
|
|
|
"noEmit": true,
|
2024-01-13 23:53:52 -05:00
|
|
|
"allowImportingTsExtensions": true,
|
2024-01-13 16:07:33 -05:00
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"baseUrl": ".",
|
2024-03-19 15:10:18 -04:00
|
|
|
"paths": {
|
2024-05-01 15:03:42 -04:00
|
|
|
"fzf": ["./node_modules/fzf/dist/types"]
|
2024-03-19 15:10:18 -04:00
|
|
|
},
|
2024-01-29 18:54:07 -05:00
|
|
|
"typeRoots": [
|
|
|
|
"./types",
|
2024-03-19 15:10:18 -04:00
|
|
|
"./global-types.d.ts",
|
2024-05-01 15:03:42 -04:00
|
|
|
"./node_modules"
|
2024-01-29 18:54:07 -05:00
|
|
|
],
|
2024-01-13 16:07:33 -05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
}
|
|
|
|
}
|