2016-03-26 23:57:37 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
2017-03-10 08:54:55 +01:00
|
|
|
"strictNullChecks": true,
|
2016-03-26 23:57:37 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2017-12-29 01:11:59 +00:00
|
|
|
"outDir": "./build",
|
|
|
|
"rootDir": "./src",
|
2017-07-07 14:31:08 +01:00
|
|
|
"module": "commonjs",
|
2017-12-06 01:03:14 +00:00
|
|
|
"declaration": true,
|
2017-12-19 21:42:17 +00:00
|
|
|
"noUnusedLocals": true,
|
2018-08-07 01:38:15 +01:00
|
|
|
"noUnusedParameters": true,
|
2017-12-29 01:11:59 +00:00
|
|
|
"baseUrl": "./src",
|
2021-03-09 02:23:22 +00:00
|
|
|
"paths": {
|
2021-03-31 21:27:40 +01:00
|
|
|
"/*": ["./*"],
|
|
|
|
"convenience-functions": ["./convenience-functions"],
|
|
|
|
"@export/*": ["./export/*"]
|
2017-12-19 21:42:17 +00:00
|
|
|
}
|
2016-03-27 03:09:50 +01:00
|
|
|
},
|
2021-03-31 21:27:40 +01:00
|
|
|
"include": ["src"]
|
2017-03-10 08:54:55 +01:00
|
|
|
}
|