blob: 9a4c6bbf0fdd8de79ab161eb4ac7fc89a00b4d35 [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001{
2 "compilerOptions": {
3 "baseUrl": ".",
4 "declaration": false,
5 "emitDecoratorMetadata": true,
6 "experimentalDecorators": true,
7 "allowJs": true,
8 "mapRoot": "./",
9 "module": "commonjs",
10 "moduleResolution": "node",
11 "outDir": "../dist/out-tsc",
12 "lib": [
13 "es6",
14 "dom"
15 ],
16 "sourceMap": true,
17 "target": "es5",
18 "typeRoots": [
19 "../node_modules/@types",
20 "./typings"
21 ],
22 "types": [
23 "jquery",
24 "core-js",
25 "node"
Tal Gitelman51d50f02017-12-10 18:55:03 +020026 ],
27 "forceConsistentCasingInFileNames": true
Michael Landoed64b5e2017-06-09 03:19:04 +030028 },
29 "exclude": [
30 "test.ts",
31 "**/*.spec.ts"
32 ]
33}