mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-16 22:02:44 +00:00
* added xml-c14n typing * reworked tests; added test run to package.json * formatting fix * removed package.json * added info * fixed errors * rewrote typing * reworked version * added compile flag * corrected export * corrected export * corrected tsconfig * set noImplicitAny to false * set other options to false * returned back options which were turned off by mistake * fixed typing according to review comment
26 lines
541 B
JSON
26 lines
541 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"xml-c14n-tests.ts"
|
|
]
|
|
}
|