-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
25 lines (25 loc) · 873 Bytes
/
Copy pathtsconfig.build.json
File metadata and controls
25 lines (25 loc) · 873 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
{
"compilerOptions": {
"declaration": true,
"declarationDir": "./dist/esm",
"outDir": "./dist/esm",
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": false,
"noEmit": false,
"jsx": "react",
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true /* Raise error on expressions and declarations with an implied 'any' type. */,
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
},
"include": ["src/**/*.ts"],
"exclude": ["docs", "**/*.test.ts", "**/*.test.tsx"]
}