DefinitelyTyped/types/cadesplugin/tsconfig.json
Nathan Shively-Sanders 252c2a2a78
Make ts3.1 the default for cadesplugin (#46936)
* Make ts3.1 the default for cadesplugin

* restore header

* remove bogus extends from tsconfig

* remove package.json
2020-08-21 08:00:46 -07:00

25 lines
511 B
JSON

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