mirror of
https://github.com/georgemandis/bubo-rss.git
synced 2024-11-05 04:04:23 +00:00
c9e98d79b6
Converting to TypeScript!
30 lines
595 B
JSON
30 lines
595 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ES2021",
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": false,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"src/@types"
|
|
],
|
|
"paths": {
|
|
"*": [
|
|
"node_modules/*",
|
|
"src/@types"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
} |