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",
|
2021-09-30 15:00:49 +01:00
|
|
|
"module": "es6",
|
|
|
|
"moduleResolution": "node",
|
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": {
|
2022-06-26 23:26:42 +01:00
|
|
|
"@util/*": ["./util/*"],
|
2021-09-28 19:56:29 +01:00
|
|
|
"@export/*": ["./export/*"],
|
2022-06-26 23:26:42 +01:00
|
|
|
"@file/*": ["./file/*"]
|
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
|
|
|
}
|