2021-07-21 10:35:14 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"target": "es2018",
|
|
|
|
"lib": ["es2018"],
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"rootDir": "lib",
|
|
|
|
"inlineSourceMap": true,
|
2021-09-18 09:23:28 -07:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"experimentalDecorators": true
|
2021-07-21 10:35:14 -07:00
|
|
|
},
|
|
|
|
"include": [
|
2021-09-05 04:32:45 -07:00
|
|
|
"lib/**/*",
|
|
|
|
"lib/util/settings.schema.json"
|
2021-07-21 10:35:14 -07:00
|
|
|
],
|
|
|
|
}
|