4bdabbfbe9
For https://github.com/vector-im/riot-web/issues/8880 Features: * Export modern JS * Export typings * Export source maps that actually mean something * No longer supporting minified builds This is a step towards being a boring SDK and not anticipating an install location. This commit requires a major version bump of the SDK.
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"
|
|
]
|
|
}
|