You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
591 B
30 lines
591 B
{ |
|
"compilerOptions": { |
|
"pretty": true, |
|
"moduleResolution": "node", |
|
"noImplicitAny": true, |
|
"target": "ES6", |
|
"module": "commonjs", |
|
"lib": ["es5", "es6", "es7", "dom"], |
|
"sourceMap": true, |
|
"declaration": true, |
|
"allowSyntheticDefaultImports": true, |
|
"experimentalDecorators": true, |
|
"emitDecoratorMetadata": true, |
|
"declarationDir": "dist/types", |
|
"outDir": "dist", |
|
"paths": { |
|
"jslib-common/*": [ |
|
"../common/src/*" |
|
] |
|
} |
|
}, |
|
"include": [ |
|
"src", |
|
"spec" |
|
], |
|
"exclude": [ |
|
"node_modules", |
|
"dist" |
|
] |
|
}
|
|
|