Files
openproject/frontend/tsconfig.json
Bruno Pagno ff1b957e31 use BlockNote as a custom element under a shadow dom root
- updated blocknote version
- updated op-blocknote-extensions version
- injecting CSS into the shadow dom
2025-12-12 09:32:54 +01:00

33 lines
995 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"jsx": "react-jsx",
"outDir": "./dist/out-tsc",
"strict": true,
"strictPropertyInitialization": false,
"strictFunctionTypes": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"paths": {
"@ng-select/ng-select/*": ["./node_modules/@ng-select/ng-select/*"],
"core-app/*": ["./src/app/*"],
"core-components/*": ["./src/app/components/*"],
"core-elements/*": ["./src/elements/*"],
"core-stimulus/*": ["./src/stimulus/*"],
"core-turbo/*": ["./src/turbo/*"],
"core-typings/*": ["./src/typings/*"],
"core-vendor/*": ["./src/vendor/*"]
}
}
}