Files
frontcraft/src/frontend/tsconfig.app.json
T
2020-03-25 23:49:54 +01:00

26 lines
467 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"strict": false,
"outDir": "./out-tsc/app",
"paths": {
"@angular/*": [
"./node_modules/@angular/*"
],
"@nebular/*": [
"./node_modules/@nebular/*"
]
}
},
"exclude": [
"test.ts",
"**/*.spec.ts",
"./node_modules/@nebular/**/*.spec.ts",
"./node_modules/rpclibrary/js/**/*"
],
"include": [
"./src/*.ts",
"./src/**/*.ts",
]
}