mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-27 15:11:05 -06:00
Merge branch 'master' of github.com:Microsoft/TypeScript
This commit is contained in:
commit
0b12e9dc01
@ -2,6 +2,7 @@
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true
|
||||
"declarationMap": true,
|
||||
"skipDefaultLibCheck": true
|
||||
}
|
||||
}
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipDefaultLibCheck": true
|
||||
}
|
||||
}
|
||||
|
||||
@ -6,6 +6,7 @@
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipDefaultLibCheck": true
|
||||
}
|
||||
}
|
||||
|
||||
@ -6,7 +6,8 @@
|
||||
"strict": false,
|
||||
"sourceMap": true,
|
||||
"declarationMap": true,
|
||||
"outFile": "./bin/first-output.js"
|
||||
"outFile": "./bin/first-output.js",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"files": [
|
||||
"first_PART1.ts",
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
"sourceMap": true,
|
||||
"declarationMap": true,
|
||||
"declaration": true,
|
||||
"outFile": "../2/second-output.js"
|
||||
"outFile": "../2/second-output.js",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"references": [
|
||||
]
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
"sourceMap": true,
|
||||
"declarationMap": true,
|
||||
"declaration": true,
|
||||
"outFile": "./thirdjs/output/third-output.js"
|
||||
"outFile": "./thirdjs/output/third-output.js",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"files": [
|
||||
"third_part1.ts"
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"rootDir": "./src/",
|
||||
"outDir": "./dist/"
|
||||
"outDir": "./dist/",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"outDir": "dist"
|
||||
"outDir": "dist",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"files": [
|
||||
"src/index.ts", "src/hello.json"
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"outDir": "dist"
|
||||
"outDir": "dist",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"include": [
|
||||
"src/**/*"
|
||||
|
||||
@ -7,7 +7,8 @@
|
||||
"resolveJsonModule": true,
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"outDir": "dist"
|
||||
"outDir": "dist",
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"files": [
|
||||
"src/hello.json"
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true
|
||||
"declarationMap": true,
|
||||
"skipDefaultLibCheck": true
|
||||
}
|
||||
}
|
||||
@ -3,7 +3,8 @@
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"sourceMap": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"references": [
|
||||
{ "path": "../core" }
|
||||
|
||||
@ -7,6 +7,7 @@
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"declaration": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipDefaultLibCheck": true
|
||||
}
|
||||
}
|
||||
@ -1,4 +1,7 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"skipDefaultLibCheck": true
|
||||
},
|
||||
"references": [
|
||||
{ "path": "../logic/index" }
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user