-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
24 lines (23 loc) · 1.22 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom", "dom.iterable"],
"jsx": "preserve" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
"sourceMap": true /* Generates corresponding '.map' file. */,
"downlevelIteration": true,
"noEmit": true /* Turn off emitting by default and enable only for the build. */,
/* Module Resolution Options */
"allowSyntheticDefaultImports": true,
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
"baseUrl": "./src" /* Base directory to resolve non-absolute module names. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"resolveJsonModule": true /* Allows importing JSON files. */,
/* Advanced Options */
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"strict": true,
"types": ["jest", "testing-library__jest-dom"]
},
"include": ["src/**/*.test.tsx", "src/**/*.test.ts", "tests/*.ts"]
}