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