forked from imbhargav5/rooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.11 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
41
42
43
{
"compilerOptions": {
"experimentalDecorators": true,
"moduleResolution": "node",
"strictNullChecks": true, // enable strict null checks as a best practice
"module": "commonjs", // specify module code generation
"jsx": "react", // use typescript to transpile jsx to js
"target": "ES5", // specify ECMAScript target version
"composite": true,
"pretty": true,
"esModuleInterop": true,
"baseUrl": "src",
"allowJs": true,
"allowSyntheticDefaultImports": true,
//"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["dom", "dom.iterable", "esnext"],
// "noImplicitAny": true,
// "noImplicitReturns": true,
// "noImplicitThis": true,
// "noUnusedLocals": true,
"paths": {
"@/*": ["*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"rootDir": "src"
//"strict": true,
},
"exclude": [
"node_modules",
"dist",
"build",
"scripts",
"docs",
"versioned_docs",
"versioned_sidebars",
"src/pages",
"src/css",
"src/theme"
],
"include": ["./src/**/*.ts", "./src/**/*.tsx"]
}