mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-05-04 18:08:46 +03:00
* Maintenance: Updated NPM packages Includes typescript update to 6. Needed to update some typescript config to align with actual module environment used and built by esbuild. * Maintenance: Fixed testing issues after NPM dep version changes * Maintenance: Updated JS test workflow step version * Maintenance: Updated approach used for TS config in jest config
24 lines
691 B
JSON
24 lines
691 B
JSON
{
|
|
"include": ["resources/js/**/*"],
|
|
"exclude": ["resources/js/wysiwyg/lexical/yjs/*"],
|
|
"compilerOptions": {
|
|
"target": "es2023",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"rootDir": "./resources/js/",
|
|
"types": ["jest", "node"],
|
|
"paths": {
|
|
"@icons/*": ["./resources/icons/*"],
|
|
"lexical": ["./resources/js/wysiwyg/lexical/core/index.ts"],
|
|
"lexical/*": ["./resources/js/wysiwyg/lexical/core/*"],
|
|
"@lexical/*": ["./resources/js/wysiwyg/lexical/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|