2023-04-08 00:44:27 +00:00
|
|
|
{
|
|
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2020",
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./built/",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"esModuleInterop": true
|
|
|
|
},
|
2023-05-29 16:31:02 +00:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules", "test/**/*"]
|
2023-04-08 00:44:27 +00:00
|
|
|
}
|