Files
DefinitelyTyped/types/align-text/tsconfig.json
joshuaharry e9ae2596ef 🤖 Merge PR #64228 [align-text] Adds index as last parameter to callback function by @joshuaharry
* [align-text] Adds index as last parameter to callback function

* Adds file to tsconfig.json

* Change test
2023-02-05 04:07:50 -08:00

25 lines
620 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": ["../"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true
},
"files": [
"index.d.ts",
"test/simple.ts",
"test/center-simple.ts",
"test/center-complex.ts",
"test/center-all-arguments.ts",
"test/array.ts"
]
}