f2a545479d
skipLibCheck=false is currently the default (in tsc 3.7.4) but it wouldn't be shocking if the default changed in the future because skipLibCheck=true makes more sense in almost all scenarios. So just to be defensive and explicit, I'm setting the flag to false even though it's the current default. PR Close #34798
26 lines
518 B
JSON
26 lines
518 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"skipLibCheck": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "../../dist/typings_test_ts37/",
|
|
"rootDir": ".",
|
|
"target": "es5",
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015.collection",
|
|
"es2015.iterable",
|
|
"es2015.promise"
|
|
],
|
|
"types": [],
|
|
},
|
|
"files": [
|
|
"include-all.ts",
|
|
"node_modules/@types/jasmine/index.d.ts"
|
|
]
|
|
}
|