2023-03-29 17:33:19 -07:00
|
|
|
{
|
|
|
|
"$schema": "http://json.schemastore.org/tsconfig",
|
|
|
|
"compilerOptions": {
|
2023-06-25 05:13:15 -07:00
|
|
|
"target": "ES2022",
|
2023-03-29 20:30:59 -07:00
|
|
|
"module": "ES2020",
|
2023-06-25 05:13:15 -07:00
|
|
|
"moduleResolution": "node16",
|
2023-03-29 17:33:19 -07:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./built/",
|
|
|
|
"removeComments": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitReturns": true,
|
2023-03-30 05:51:24 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
2023-03-30 05:52:51 -07:00
|
|
|
"esnext",
|
|
|
|
"dom"
|
2023-03-30 05:51:24 -07:00
|
|
|
]
|
2023-03-29 17:33:19 -07:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"test/**/*"
|
|
|
|
]
|
|
|
|
}
|