mirror of
https://github.com/chenasraf/venom.git
synced 2026-05-18 01:29:07 +00:00
22 lines
520 B
JSON
22 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["es6", "dom"],
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"baseUrl": "./",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"types": ["reflect-metadata", "node"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|