* test(gutenberg-to-portable-text): add transform tests This adds a bunch of tests, mostly for the transformers but also some minor edge cases in the inline parser, too. It also enables `noUnusedLocals` in `tsconfig.json` which caught a couple of unused things. * chore: add domain to each * style: format * chore: remove some figures --------- Co-authored-by: emdashbot[bot] <emdashbot[bot]@users.noreply.github.com>
22 lines
474 B
JSON
22 lines
474 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitOverride": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|