20 lines
426 B
JSON
20 lines
426 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES5",
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"inlineSources": true, // Required for debugging NPM published package.
|
|
"outDir": "dist/",
|
|
"rootDir": "src/",
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": []
|
|
}
|