-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 891 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 891 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
{
"compilerOptions": {
"sourceMap": true,
"declaration": true,
"outDir": "dist",
"declarationMap": true,
"strictNullChecks": true,
"module": "esnext",
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"target": "es5",
"allowJs": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false, // This is true in feathery-frontend, but needs to be false here
"noImplicitAny": true,
"downlevelIteration": true // This enables to iterate the string set (Form/utils)
},
"exclude": ["node_modules", "src/**/*.spec.ts", "src/**/*.spec.js"],
"include": ["./src/**/*"]
}