-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
27 lines (27 loc) · 1.12 KB
/
tsconfig.base.json
File metadata and controls
27 lines (27 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"lib": ["DOM", "ESNext"],
"types": ["node"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"paths": {
"@/*": ["./src/*"],
"#/wasm/loaders/loadWASM.js": ["./src/wasm/loaders/loadWASM.web.ts"],
"#/wasm/loaders/loadWASMSync.js": ["./src/wasm/loaders/loadWASMSync.web.ts"],
"#/worker/helpers/createWorker.js": ["./src/worker/helpers/createWorker.web.ts"],
"#/utils/response/getOptionsFromResponse.constants.js": ["./src/utils/response/getOptionsFromResponse.constants.web.ts"],
"#/utils/charset/getCharsetValidation.constants.js": ["./src/utils/charset/getCharsetValidation.constants.web.ts"],
"#/parser/api/string/parseStringToArraySyncWASM.main.js": ["./src/parser/api/string/parseStringToArraySyncWASM.main.web.ts"]
}
}
}