-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
34 lines (34 loc) · 918 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
30
31
32
33
34
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
/* the following two settings are required for angular2 annotations to work*/
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
/* for reading your ts source while debugging from a browser */
"sourceMap": true,
/* noImplicitAny when you want your typescript to be fully typed */
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"outDir": ".",
"rootDir": ".",
"typeRoots": [
"../node_modules/@types"
],
"types": [
"core-js",
"requirejs"
]
},
"awesomeTypescriptLoaderOptions": {
"useWebpackText": true // Allows other loaders to be chained to awesome-typescript-loader.
},
"exclude": [
"node_modules",
"project/target",
"typings/index.d.ts",
"target/web"
]
}