UNPKG

612 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "es5",
4 "module": "commonjs",
5 "moduleResolution": "node",
6 "noEmit": true,
7 "sourceMap": true,
8 "declaration": false,
9 "noImplicitAny": false,
10 "experimentalDecorators": true,
11 "emitDecoratorMetadata": true,
12 "lib": [
13 "es2015",
14 "dom"
15 ],
16 "typeRoots" : [
17 "./node_modules/@types"
18 ],
19 "types": [
20 "jasmine",
21 "karma",
22 "node",
23 "webpack",
24 "webpack-env"
25 ]
26 },
27 "include": [
28 "src/**/*.ts"
29 ],
30 "exclude": [
31 "src/**/*.spec.ts",
32 "node_modules",
33 "demo",
34 "dist"
35 ]
36}