2019-07-16 01:40:01 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2019-09-26 11:22:14 -05:00
|
|
|
"resolveJsonModule": true,
|
2023-02-14 16:20:11 -05:00
|
|
|
"skipLibCheck": true,
|
2022-11-22 12:35:47 -05:00
|
|
|
"rootDir": "./src",
|
|
|
|
"outDir": "./build",
|
2019-07-16 01:40:01 -05:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-05-13 12:52:34 -05:00
|
|
|
"esModuleInterop": true
|
2019-07-16 01:40:01 -05:00
|
|
|
},
|
2022-01-09 14:51:50 -05:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts"],
|
2024-05-13 12:52:34 -05:00
|
|
|
"include": ["src/**/*.ts", "types/*.d.ts"]
|
2019-07-16 01:40:01 -05:00
|
|
|
}
|