21 lines
527 B
JSON
21 lines
527 B
JSON
|
{
|
||
|
"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",
|
||
|
"typeRoots": ["node_modules/@types"]
|
||
|
},
|
||
|
"include": ["src", "spec"],
|
||
|
"exclude": ["node_modules", "dist"]
|
||
|
}
|