-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (39 loc) · 1.06 KB
/
tsconfig.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"compilerOptions": {
"outDir": "./dist/",
"strict": true,
/* noImplicitAny: Highlights places where the type is not specified */
"noImplicitAny": true,
"module": "ESNext",
"target": "es5",
"jsx": "react-jsx",
/* allowJs: allows you to process not only js files, but also ts */
"allowJs": true,
"moduleResolution": "node",
/* esModuleInterop: Allows you to work with packages that use common js as normal packages with "import" (require() module.exports) = common js */
"esModuleInterop": true,
/* allowSyntheticDefaultImports: Allows you to use regular imports without the asterisk "import React from 'react'" instead of "import as React from 'react'" */
"allowSyntheticDefaultImports": true,
"plugins": [
{
"name": "jsx-display-if"
}
],
"baseUrl": ".",
"paths": {
"*": [
"./src/*"
]
}
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"include": [
"./config/jest/setupTests.ts",
"./src/**/*.ts",
"./src/**/*.tsx",
]
}