element-web/tsconfig.json

21 lines
373 B
JSON
Raw Normal View History

2019-12-13 00:35:28 +03:00
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es2016",
"noImplicitAny": false,
"sourceMap": false,
"outDir": "./lib",
"declaration": true,
"types": [
"node",
"react"
2019-12-13 00:35:28 +03:00
]
},
"include": [
"./src/**/*.ts"
]
}