-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
33 lines (33 loc) · 707 Bytes
/
tsconfig.test.json
File metadata and controls
33 lines (33 loc) · 707 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
{
"compilerOptions": {
"allowJs": false,
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"inlineSources": true,
"lib": ["ES2022", "es6", "dom"],
"module": "Preserve",
"moduleResolution": "Bundler",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"outDir": "dist",
"rootDir": ".",
"sourceMap": true,
"strictNullChecks": true,
"target": "ES2022",
},
"exclude": [
"acceptance-tests",
"browser-build.config.js",
"browser",
"dist",
"coverage",
"data",
"jest",
"node_modules",
"scripts"
]
}