2023-07-07 19:22:30 +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
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"],
|
2023-07-20 15:14:08 +00:00
|
|
|
"exclude": ["node_modules"]
|
2023-07-07 19:22:30 +00:00
|
|
|
}
|