-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 857 Bytes
/
tsconfig.base.json
File metadata and controls
37 lines (37 loc) · 857 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
{
"compileOnSave": false,
"buildOnSave": false,
"compilerOptions": {
"module": "commonjs",
"target": "ES2015",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"strictNullChecks": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": true,
"removeComments": false,
"skipLibCheck": true,
"sourceMap": true,
"jsx": "react",
"lib": [
"es2015",
"dom"
]
},
"types": [
"vitest/globals",
"@testing-library/jest-dom"
],
"exclude": [
"node_modules",
"e2e",
"mocks",
"test",
"test-data",
"**/*.d.ts",
"vitest-config.ts",
"vitest-setup.ts"
]
}