mango-v4-service/mango-service-v3/tsconfig.json

21 lines
496 B
JSON
Raw Normal View History

2021-09-07 22:00:59 -07:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": "./src",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"noImplicitAny": true,
"skipLibCheck": true,
2021-09-07 22:00:59 -07:00
"outDir": "./dist",
"sourceMap": true,
"target": "ES2020",
"module": "commonjs",
"resolveJsonModule": true
2021-09-07 22:00:59 -07:00
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}