28 lines
604 B
JSON
28 lines
604 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"target": "es6",
|
|
"noImplicitAny": false,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"importHelpers": true,
|
|
"types": ["jest"],
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"lib": [
|
|
"es2017",
|
|
"ES2019",
|
|
"dom"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*", "tests/**/*"
|
|
]
|
|
} |