23 lines
407 B
JSON
23 lines
407 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "es6",
|
|
"target": "ES2016",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"types": [],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"jslib/*": [ "jslib/src/*" ]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"build"
|
|
]
|
|
}
|