2018-04-27 13:27:42 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-04-07 09:10:19 +00:00
|
|
|
"target": "ES2019",
|
2018-04-27 13:27:42 +00:00
|
|
|
"module": "commonjs",
|
2021-03-22 13:29:53 +00:00
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"strictPropertyInitialization": false,
|
2018-04-27 13:27:42 +00:00
|
|
|
"preserveConstEnums": true,
|
2019-06-13 09:54:39 +00:00
|
|
|
"inlineSourceMap": true,
|
2018-11-02 15:57:35 +00:00
|
|
|
"outDir": "./build/",
|
2018-11-05 14:49:06 +00:00
|
|
|
"skipLibCheck": true,
|
2021-11-11 20:25:51 +00:00
|
|
|
"lib": ["es2019"],
|
2020-03-23 18:22:48 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowJs": true
|
2018-04-27 13:27:42 +00:00
|
|
|
},
|
2020-03-31 15:25:57 +00:00
|
|
|
"include": ["src/**/*", "test/**/*", "typings/**/*.d.ts"]
|
2018-04-27 13:27:42 +00:00
|
|
|
}
|