-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
40 lines (40 loc) · 1.14 KB
/
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
34
35
36
37
38
39
40
{
"compilerOptions": {
"baseUrl": ".",
"composite": true, // Make sure typescript knows that this module depends on their references
"noEmit": false /* Do not emit outputs. */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"rootDir": "./src" /* Specify the root folder within your source files. */,
"declaration": true,
"declarationMap": true,
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"sourceMap": true,
"strict": false,
"incremental": true,
"isolatedModules": true,
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"resolvePackageJsonExports": true,
"resolveJsonModule": true
},
"exclude": [
"dist",
"build",
"tests",
"test",
"node_modules",
".eslintrc.js",
"src/**/*.spec.js",
"src/**/*.spec.jsx",
"src/**/*.spec.ts",
"src/**/*.spec.tsx"
],
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.d.ts", "src/**/*.json"],
}