24 lines
447 B
JSON
24 lines
447 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../out-tsc/app",
|
|
"declaration": false,
|
|
"emitDecoratorMetadata": true,
|
|
"paths": {
|
|
"spring-flo/*": [
|
|
"../../dist/spring-flo/*"
|
|
],
|
|
"spring-flo": [
|
|
"../../dist/spring-flo"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"main.ts",
|
|
"polyfills.ts"
|
|
],
|
|
"include": [
|
|
"**/*.d.ts"
|
|
]
|
|
}
|
|
|