2021-05-12 14:29:17 +00:00
|
|
|
{
|
2021-07-30 04:01:52 +00:00
|
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
2021-05-16 09:22:19 +00:00
|
|
|
"compilerOptions": {
|
2021-05-16 14:42:06 +00:00
|
|
|
"target": "es2020",
|
2022-08-26 05:25:56 +00:00
|
|
|
"module": "es2020",
|
2021-05-16 09:22:19 +00:00
|
|
|
"declaration": true,
|
2021-07-30 04:01:52 +00:00
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
2021-05-16 09:22:19 +00:00
|
|
|
"outDir": "./built/",
|
|
|
|
"removeComments": true,
|
2022-08-26 05:25:56 +00:00
|
|
|
"skipLibCheck": true,
|
2021-05-16 09:22:19 +00:00
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
2022-08-26 05:25:56 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node"
|
2021-05-16 09:22:19 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2021-07-30 04:01:52 +00:00
|
|
|
"src/**/*"
|
2021-05-16 09:22:19 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-07-30 04:01:52 +00:00
|
|
|
"test/**/*"
|
2021-05-16 09:22:19 +00:00
|
|
|
]
|
2021-05-12 14:29:17 +00:00
|
|
|
}
|