24 lines
578 B
JSON
24 lines
578 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"module": "esnext",
|
|
"target": "ES2015",
|
|
"outDir": "./dist",
|
|
"declarationDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", " **/tests/*"]
|
|
}
|