forked from PaulCailly/hackathon-wild-fest-2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 861 Bytes
/
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
{
"include": ["./src/**/*"],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"sourceMap": true,
"noImplicitAny": false,
"lib": ["dom", "esnext"],
"jsx": "react",
"allowJs": true,
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noEmit": true,
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@app/*": ["src/app/*"],
"@components/*": ["src/components/*"],
"@data/*": ["src/data/*"],
"@models/*": ["src/models/*"],
"@styles/*": ["src/styles/*"],
"@utils/*": ["utils/*"]
},
"typeRoots": ["./types", "./node_modules/@types"]
},
"exclude": ["node_modules", "typings"]
}