Vmeda.Online/tsconfig.test.json

39 lines
897 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
2020-10-15 10:11:07 +00:00
"outDir": "./out-tsc/tests",
2020-10-07 09:13:54 +00:00
"allowJs": true,
"esModuleInterop": true,
2020-10-07 09:13:54 +00:00
"emitDecoratorMetadata": true,
"types": [
"cordova-plugin-file-transfer",
"cordova-plugin-inappbrowser",
"cordova",
2020-10-15 10:11:07 +00:00
"dom-mediacapture-record",
"jest",
"node"
],
"paths": {
"@/*": ["*"],
"@addon/*": ["app/addon/*"],
"@app/*": ["app/*"],
"@classes/*": ["app/classes/*"],
"@components/*": ["app/components/*"],
"@core/*": ["app/core/*"],
"@directives/*": ["app/directives/*"],
"@pipes/*": ["app/pipes/*"],
"@services/*": ["app/services/*"],
"@singletons/*": ["app/singletons/*"],
"@tests/*": ["tests/*"]
}
},
"files": [
"src/tests/setup.ts",
"src/polyfills.ts"
],
"include": [
2020-10-15 10:11:07 +00:00
"src/**/*.ts",
"src/**/*.d.ts"
]
}