-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 697 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 697 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
{
"compilerOptions": {
"plugins": [{ "name": "tsl/plugin" }],
"target": "ES2019",
"module": "commonjs",
"declaration": true,
"outDir": "./dist",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"types": [
"node",
"tsl/patches/all"
],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"src/index.ts"
],
"include": [
"tests/**/*.spec.ts"
],
"exclude": [
"./node_modules/",
"./dist/"
]
}