We need to do this because we don't yet have a released version of angular with typescript 3.2 support and on CI we test both against the snapshot and whatever is in aio/yarn.lock. Once we have the next rc or a stable relase we should be able to remove this flag. PS: I also removed the preserveWhitespace:false because that's the default now. PR Close #27536
19 lines
353 B
JSON
19 lines
353 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../out-tsc/app",
|
|
"module": "es2015",
|
|
"baseUrl": "",
|
|
"types": [],
|
|
"importHelpers": true
|
|
},
|
|
"exclude": [
|
|
"testing/**/*",
|
|
"test.ts",
|
|
"test-specs.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"disableTypeScriptVersionCheck": true
|
|
}
|
|
} |