-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
32 lines (26 loc) · 975 Bytes
/
tsconfig.base.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
{
"compilerOptions": {
"jsx": "react-jsx",
"skipLibCheck": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"isolatedModules": true,
"outDir": "./dist",
"declaration": true /* Generates corresponding '.d.ts' file. */,
"sourceMap": true,
"strict": true,
"paths": {
"nice-color-palettes/1000": ["./src/types/nice-color-palettes/1000.d.ts"],
"jsurl": ["./src/types/jsurl.d.ts"]
},
"esModuleInterop": true,
/* Advanced Options */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
}
}