mirror of https://github.com/vector-im/riot-web
20 lines
358 B
JSON
20 lines
358 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es2016",
|
||
|
"noImplicitAny": false,
|
||
|
"sourceMap": false,
|
||
|
"outDir": "./lib",
|
||
|
"declaration": true,
|
||
|
"types": [
|
||
|
"node"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"./src/**/*.ts"
|
||
|
]
|
||
|
}
|