2020-01-26 22:16:16 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "es2015",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es5",
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
2020-02-02 22:42:18 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015"
|
|
|
|
],
|
2020-01-26 22:16:16 +00:00
|
|
|
"experimentalDecorators": true
|
|
|
|
},
|
|
|
|
"include": [
|
2020-02-02 22:42:18 +00:00
|
|
|
"resources/scripts/main.ts"
|
2020-01-26 22:16:16 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|