-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
50 lines (50 loc) · 1.46 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
44
45
46
47
48
49
50
{
"compilerOptions": {
"rootDir": ".",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": "./src",
"declaration": false,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"isolatedModules": false,
"jsx": "react",
"lib": ["es5", "es6", "es7", "es2015", "es2017", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": false,
"noImplicitUseStrict": false,
"noLib": false,
"noResolve": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "factory",
"paths": {
"#components": ["./components"],
"#components/*": ["./components/*"],
"#definitions": ["./definitions"],
"#definitions/*": ["./definitions/*"],
"#pages": ["./pages/"],
"#pages/*": ["./pages/*"],
"#styles": ["./styles/"],
"#styles/*": ["./styles/*"],
"#templates": ["./templates/"],
"#templates/*": ["./templates/*"],
"#utils": ["./utils/"],
"#utils/*": ["./utils/*"],
"*": ["node_modules"]
},
"removeComments": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"target": "esnext",
"typeRoots": ["node_modules/@types", "src/definitions"]
},
"exclude": ["factory", "node_modules"],
"include": ["**/*.ts", "**/*.d.ts", "**/*.tsx", "**/*.d.tsx"]
}