mirror of
https://github.com/KevinMidboe/miljobilen-rss.git
synced 2025-10-28 17:20:23 +00:00
25 lines
520 B
JSON
25 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"target": "es2021",
|
|
"module": "commonjs",
|
|
"outDir": "dist",
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"./src/**/*.js"
|
|
],
|
|
"verbose": true
|
|
}
|