DefinitelyTyped/types/loadjs/tsconfig.json

26 lines
547 B
JSON
Raw Permalink Normal View History

2018-05-20 11:16:02 +00:00
{
"compilerOptions": {
"module": "commonjs",
"lib": [
2019-10-07 23:43:37 +00:00
"es6",
"dom"
2018-05-20 11:16:02 +00:00
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/loadjs-tests.ts",
"test/loadjs-umd-tests.ts"
]
}