-
Notifications
You must be signed in to change notification settings - Fork 93
/
tsconfig.json
30 lines (30 loc) · 956 Bytes
/
tsconfig.json
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
28
29
30
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"target": "ES2022",
"emitDecoratorMetadata": true,
"typeRoots": ["node_modules/@types"],
"lib": ["es2020", "dom"],
"module": "commonjs",
"baseUrl": "./",
"paths": {
"fs": ["./shims/noop"],
"bn.js": ["../node_modules/bn.js/lib/bn.js"],
"ngx-plyr": ["../node_modules/ngx-plyr/dist/ngx-plyr"],
"stream": ["../node_modules/stream-browserify"],
"os": ["../node_modules/os-browserify"],
"http": ["../node_modules/stream-http"],
"https": ["../node_modules/https-browserify"],
"crypto": ["../node_modules/crypto-browserify"],
"util": ["../node_modules/util"],
"assert": ["../node_modules/assert"],
},
"useDefineForClassFields": false,
},
}