Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
at lambda-fork/main 157 lines 4.7 kB view raw
1{ 2 "compilerOptions": { 3 "module": "ES2022", 4 "target": "ES2022", 5 "checkJs": true, 6 "moduleResolution": "node", 7 "strict": true, 8 "strictNullChecks": true, 9 "noImplicitAny": true, 10 "strictPropertyInitialization": true, 11 "suppressImplicitAnyIndexErrors": false, 12 "skipLibCheck": true, 13 "baseUrl": ".", 14 "paths": { 15 "api-map": [ 16 "../types/ext/api-map" 17 ], 18 "anki-templates": [ 19 "../types/ext/anki-templates" 20 ], 21 "anki-templates-internal": [ 22 "../types/ext/anki-templates-internal" 23 ], 24 "cache-map": [ 25 "../types/ext/cache-map" 26 ], 27 "core": [ 28 "../types/ext/core" 29 ], 30 "css-style-applier": [ 31 "../types/ext/css-style-applier" 32 ], 33 "database": [ 34 "../types/ext/database" 35 ], 36 "dictionary": [ 37 "../types/ext/dictionary" 38 ], 39 "dictionary-data": [ 40 "../types/ext/dictionary-data" 41 ], 42 "dictionary-data-util": [ 43 "../types/ext/dictionary-data-util" 44 ], 45 "dictionary-database": [ 46 "../types/ext/dictionary-database" 47 ], 48 "dictionary-importer": [ 49 "../types/ext/dictionary-importer" 50 ], 51 "dictionary-importer-media-loader": [ 52 "../types/ext/dictionary-importer-media-loader" 53 ], 54 "dynamic-property": [ 55 "../types/ext/dynamic-property" 56 ], 57 "error": [ 58 "../types/ext/error" 59 ], 60 "event-listener-collection": [ 61 "../types/ext/event-listener-collection" 62 ], 63 "japanese-util": [ 64 "../types/ext/japanese-util" 65 ], 66 "language": [ 67 "../types/ext/language" 68 ], 69 "language-descriptors": [ 70 "../types/ext/language-descriptors" 71 ], 72 "CJK-util": [ 73 "../types/ext/CJK-util" 74 ], 75 "ext/json-schema": [ 76 "../types/ext/json-schema" 77 ], 78 "language-transformer": [ 79 "../types/ext/language-transformer" 80 ], 81 "language-transformer-internal": [ 82 "../types/ext/language-transformer-internal" 83 ], 84 "log": [ 85 "../types/ext/log" 86 ], 87 "settings": [ 88 "../types/ext/settings" 89 ], 90 "structured-content": [ 91 "../types/ext/structured-content" 92 ], 93 "translator": [ 94 "../types/ext/translator" 95 ], 96 "translation": [ 97 "../types/ext/translation" 98 ], 99 "translation-internal": [ 100 "../types/ext/translation-internal" 101 ], 102 "dev/*": [ 103 "../types/dev/*" 104 ], 105 "rollup/parseAst": [ 106 "../types/other/rollup-parse-ast" 107 ], 108 "chai": [ 109 "../node_modules/@vitest/expect/dist/chai.d.cts" 110 ] 111 }, 112 "types": [ 113 "node", 114 "events", 115 "browserify", 116 "jsdom", 117 "assert", 118 "css", 119 "chrome", 120 "ajv", 121 "dom-webcodecs" 122 ], 123 "lib": [ 124 "ES2022", 125 "DOM", 126 "DOM.Iterable", 127 "WebWorker" 128 ] 129 }, 130 "include": [ 131 "**/*.js", 132 "../playwright.config.js", 133 "../vitest.config.js", 134 "../ext/js/core.js", 135 "../ext/js/core/extension-error.js", 136 "../ext/js/data/database.js", 137 "../ext/js/data/json-schema.js", 138 "../ext/js/general/cache-map.js", 139 "../ext/js/data/anki-note-data-creator.js", 140 "../ext/js/general/cache-map.js", 141 "../ext/js/general/regex-util.js", 142 "../ext/js/general/text-source-map.js", 143 "../ext/js/language/language-transformer.js", 144 "../ext/js/dictionary/dictionary-importer.js", 145 "../ext/js/dictionary/dictionary-database.js", 146 "../ext/js/dictionary/dictionary-data-util.js", 147 "../ext/js/language/japanese-util.js", 148 "../ext/js/language/translator.js", 149 "../ext/js/media/media-util.js", 150 "../types/dev/**/*.ts", 151 "../types/other/globals.d.ts" 152 ], 153 "exclude": [ 154 "../node_modules", 155 "lib" 156 ] 157}