2018-04-27 13:27:42 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"preserveConstEnums": true,
|
2019-06-13 09:54:39 +00:00
|
|
|
"inlineSourceMap": true,
|
2018-04-27 13:27:42 +00:00
|
|
|
"strictNullChecks": true,
|
2018-11-02 15:57:35 +00:00
|
|
|
"outDir": "./build/",
|
2018-11-05 14:49:06 +00:00
|
|
|
"skipLibCheck": true,
|
2019-06-13 09:54:39 +00:00
|
|
|
"lib": ["es6"],
|
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
|
|
|
}
|