DefinitelyTyped/types/java/tsconfig.json

24 lines
485 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
2020-02-26 00:28:40 +00:00
"strictNullChecks": true,
2020-02-27 22:32:44 +00:00
"strictFunctionTypes": true,
2016-05-09 20:52:25 +00:00
"baseUrl": "../",
"typeRoots": [
2016-05-10 19:24:49 +00:00
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"java-tests.ts"
]
2020-02-26 00:28:40 +00:00
}