20 lines
437 B
JSON
20 lines
437 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"target": "ES2018",
|
||
|
"moduleResolution": "node",
|
||
|
"outDir": "dist",
|
||
|
"baseUrl": ".",
|
||
|
"allowJs": true,
|
||
|
"strict": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"sourceMap": true
|
||
|
},
|
||
|
"include": ["src/**/*"],
|
||
|
"exclude": ["src/**/*spec.ts"]
|
||
|
}
|