]> BookStack Code Mirror - bookstack/blob - tsconfig.json
Lexical: Got a range of Editor tests working
[bookstack] / tsconfig.json
1 {
2   "include": ["resources/js/**/*"],
3   "compilerOptions": {
4     "target": "es2019",
5     "module": "commonjs",
6     "rootDir": "./resources/js/",
7     "baseUrl": "./",
8     "paths": {
9       "@icons/*": ["resources/icons/*"],
10       "lexical": ["resources/js/wysiwyg/lexical/core/index.ts"],
11       "lexical/*": ["resources/js/wysiwyg/lexical/core/*"],
12       "@lexical/*": ["resources/js/wysiwyg/lexical/*"]
13     },
14     "resolveJsonModule": true,
15     "allowJs": true,
16     "esModuleInterop": true,
17     "forceConsistentCasingInFileNames": true,
18     "strict": true,
19     "skipLibCheck": true
20   }
21 }