Pop-up dictionary browser extension for language learning. Successor to Yomichan. (PERSONAL FORK)
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 "*": ["./types/ext/*"],
16 "ext/json-schema": ["./types/ext/json-schema"]
17 },
18 "types": [
19 "chrome",
20 "dom-webcodecs",
21 "firefox-webext-browser",
22 "handlebars",
23 "jszip",
24 "parse5",
25 "zip.js",
26 "dexie",
27 "ajv"
28 ],
29 "lib": [
30 "ES2022",
31 "DOM",
32 "DOM.Iterable",
33 "WebWorker"
34 ]
35 },
36 "include": [
37 "ext/**/*.js",
38 "types/ext/**/*.ts",
39 "types/other/globals.d.ts"
40 ],
41 "exclude": [
42 "node_modules",
43 "ext/lib"
44 ]
45}