-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
38 lines (33 loc) 路 810 Bytes
/
Copy pathtsconfig.json
File metadata and controls
38 lines (33 loc) 路 810 Bytes
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"include": [
"wallaby.js",
".eslintrc.js",
"commitlint.config.js",
"jest.config.js",
"lib/**/*"
],
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist",
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"jsx": "preserve",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@client": ["./lib/client/index.ts"],
"@protocols": ["./lib/protocols/index.ts"],
"@loaders": ["./lib/loaders/index.ts"]
}
}
}