mirror of
https://github.com/codex-team/editor.js
synced 2026-03-14 22:55:47 +01:00
* fix types export * lint * changelog * tests fixed * fix tests imports * lint tests * upd submodule * Update yarn.lock * rename wrapper to factory * Update package.json * rename to adapters * Update tools.d.ts * BlockTool -> BlockToolAdapter etc * Update nested-list * Update collection.ts
26 lines
811 B
JSON
26 lines
811 B
JSON
{
|
|
"compilerOptions" : {
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"target": "es2017",
|
|
"declaration": false,
|
|
"moduleResolution": "node", // This resolution strategy attempts to mimic the Node.js module resolution mechanism at runtime
|
|
"lib": ["dom", "es2017", "es2018", "es2019"],
|
|
|
|
// allows to import .json files for i18n
|
|
"resolveJsonModule": true,
|
|
|
|
// allows to omit export default in .json files
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/types": [ "./types/" ],
|
|
"@/types/*": [ "./types/*" ],
|
|
},
|
|
|
|
// @todo move to cypress/tsconfig.json when cypress will support overriding tsconfig path
|
|
// @see https://github.com/cypress-io/cypress/issues/23045
|
|
"esModuleInterop": true
|
|
},
|
|
}
|