Files
DefinitelyTyped/types/kana2ipa/tsconfig.json
A.Yamamoto 7dbf41936f 🤖 Merge PR #65142 [kana2ipa] Add definition by @na2na-p
* Add kana2ipa

* prettier fix

* add tests

* fix test errors

* change compilerOptions.target
2023-04-16 17:19:39 -07:00

25 lines
514 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"kana2ipa-tests.ts"
]
}