-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (33 loc) · 917 Bytes
/
tsconfig.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
33
{
"compilerOptions": {
"outDir": "build/lib",
"module": "esnext",
"moduleResolution": "node",
"target": "es5",
"lib": ["es5", "es6", "es7", "es2017", "dom", "dom.iterable", "esnext"],
"sourceMap": true,
"allowJs": false,
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"strict": true,
"jsx": "preserve",
"noEmit": true,
"rootDirs": ["components", "pages", "public", "stories"],
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}