-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1.02 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
{
"compilerOptions": {
"resolveJsonModule": true,
"target": "esnext",
"module": "es6",
"lib": ["es2016"],
"allowJs": true,
"jsx": "react-native",
"declaration": true,
"outDir": "dist",
"rootDir": "src",
"isolatedModules": true,
"strict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"baseUrl": "./src",
"types": ["react", "react-native", "jest", "node"],
"paths": {
"react": ["../node_modules/@types/react"],
"atoms/*": ["./components/atoms/*"],
"molecules/*": ["./components/molecules/*"],
"organisms/*": ["./components/organisms/*"],
"templates/*": ["./components/templates/*"],
"scale": ["./scale"],
"theme/*": ["./theme/*"],
"ts/*": ["./ts/*"],
"utils/*": ["./utils/*"]
}
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"src/**/*.spec.ts",
"src/**/*.spec.tsx"
],
"include": ["src/**/*"],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}