15 lines
325 B
JSON
15 lines
325 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es5", "es6"],
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
|
}
|