* Remove eslint completely * Make the 'last updated' time relative * Restore accidentally commited feeds * Add yazzy link to each article
23 lines
512 B
JSON
23 lines
512 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/**/*"]
|
|
}
|