-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
58 lines (58 loc) · 1.48 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"ts-node": { // ts-node automated configuration using commonjs
"compilerOptions": {
"module": "CommonJS"
}
},
"include": [
"src",
"test",
],
"exclude": [
"ignore",
"build",
"dist",
"node_modules",
"**/node_modules",
],
"compilerOptions": {
"module": "CommonJS",
"target": "ESNext",
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"strict": false,
"strictPropertyInitialization": false,
"isolatedModules": false,
"experimentalDecorators": true,
"sourceMap": true,
"esModuleInterop": true,
"downlevelIteration": true,
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"types": [
"node",
// VSCode complains if we don't include this in `tsconfig.json`.
// Doesn't matter that it's included in `tsconfig.test.json`.
"mocha",
],
"lib": [
// "dom",
// "dom.iterable",
"esnext",
// "es5",
// "es2015.collection",
// "es2015.promise",
],
"typeRoots": [
"./node_modules/@types",
"./src/@types",
],
"baseUrl": ".",
"paths": {
"@src/*": ["./src/*"],
"@helpers": ["./test/test-helpers.ts"],
},
},
}