mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-13 01:05:37 +02:00
Adds `/blog` page with support for `.md` and `.mdx` files. What we learnt in setting this up will be packages in a package `@nestri/mdx` and used to set up the `/docs` and the `/terms` and `/privacy` routes
17 lines
312 B
JavaScript
17 lines
312 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
"@nestri/eslint-config/qwik.js",
|
|
],
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ["./tsconfig.json"],
|
|
ecmaVersion: 2021,
|
|
sourceType: "module",
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
},
|
|
}
|
|
};
|