2022-05-10 18:52:07 +10:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-06-29 20:02:30 +10:00
|
|
|
"lib": ["es6", "es2020"],
|
2022-05-18 18:18:10 +10:00
|
|
|
"target": "es2020",
|
2022-05-10 18:52:07 +10:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "./build",
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true
|
|
|
|
},
|
2022-06-29 20:02:30 +10:00
|
|
|
"include": ["src/**/*"]
|
2022-05-10 18:52:07 +10:00
|
|
|
}
|