-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 813 Bytes
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 813 Bytes
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
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es2017", "dom"],
"rootDir": "src",
"jsx": "react",
"sourceMap": false,
"declaration": false,
"moduleResolution": "node",
"noImplicitAny": false,
"removeComments": true,
"newLine": "LF",
"experimentalDecorators": true,
"skipLibCheck": true,
"types": ["node", "sharepoint", "mocha"],
"strictNullChecks": true,
"outDir": "app",
"baseUrl": "src/",
"paths": {
"@utils/*": [ "templates/src/scripts/utils/*" ],
"@components/*": [ "templates/presets/react/scripts/components/*" ],
"@containers/*": [ "templates/presets/react/scripts/containers/*" ]
}
},
"exclude": [
"/node_modules/",
"app",
"src/templates",
"/tmp/",
"test"
]
}