21 lines
432 B
JSON
21 lines
432 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"target": "esnext",
|
|
"lib": [
|
|
"esnext"
|
|
],
|
|
"baseUrl": "src",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|