2019-01-01 15:59:27 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "lib",
|
2020-08-21 12:09:58 -05:00
|
|
|
"module": "ES2015",
|
2021-04-30 09:24:27 -05:00
|
|
|
"target": "ES2015",
|
2022-01-04 12:11:15 -05:00
|
|
|
// "sourceMap": true,
|
2019-02-18 12:18:16 -05:00
|
|
|
"noEmitOnError": true,
|
2021-04-30 09:24:27 -05:00
|
|
|
"lib": ["ES2015", "dom"],
|
|
|
|
"moduleResolution": "node",
|
2021-05-05 09:19:24 -05:00
|
|
|
"declaration": true,
|
2021-09-23 16:43:38 -05:00
|
|
|
"removeComments": false
|
2021-05-05 09:26:24 -05:00
|
|
|
// "noImplicitAny": true,
|
2021-05-05 09:19:24 -05:00
|
|
|
// "strict": true
|
2019-01-01 15:59:27 -05:00
|
|
|
},
|
2021-11-25 19:05:56 +08:00
|
|
|
"include": ["./src/**/*.ts"]
|
2019-01-01 15:59:27 -05:00
|
|
|
}
|