-
Notifications
You must be signed in to change notification settings - Fork 44
/
tsconfig.json
33 lines (33 loc) · 1.36 KB
/
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
31
32
33
{
"compilerOptions": {
"baseUrl": "./src",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"preserveSymlinks": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"noFallthroughCasesInSwitch": true,
"paths": {
"crypto": ["./node_modules/empty-module"], // crypto-browserify can be polyfilled here if needed
"stream": ["./node_modules/empty-module"], // stream-browserify can be polyfilled here if needed
"assert": ["./node_modules/empty-module"], // assert can be polyfilled here if needed
"http": ["./node_modules/empty-module"], // stream-http can be polyfilled here if needed
"https": ["./node_modules/empty-module"], // https-browserify can be polyfilled here if needed
"os": ["./node_modules/empty-module"], // os-browserify can be polyfilled here if needed
"url": ["./node_modules/empty-module"], // url can be polyfilled here if needed
"zlib": ["./node_modules/empty-module"], // browserify-zlib can be polyfilled here if needed
"process": ["./node_modules/process"]
}
},
"include": ["src"]
}