mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
19 lines
474 B
JSON
19 lines
474 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"outDir": "./build/app",
|
|
"module": "CommonJS",
|
|
"types": ["bluebird", "body-parser", "jquery", "validator"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "node",
|
|
"sourceMap": false,
|
|
"target": "es2015",
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
}
|
|
|