-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 839 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 839 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"outDir": "dist",
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es5",
"noImplicitAny": false,
"incremental": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"isolatedModules": true,
"paths": {
"@emotion/core": ["./types/index.d.ts"],
"@storybook/theming": ["./types/index.d.ts"],
"react": ["./node_modules/@types/react"]
}
},
"exclude": ["node_modules", "pages", "*.test.ts"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}