DefinitelyTyped/types/dragula/tsconfig.json
Piotr Błażejewicz (Peter Blazejewicz) a8b10755f8
feat(dragula): update to version 3.7 (#42106)
- version 2 created
- version 3 update with refined constructor, listeners and missing
properties and methods
- tests amended
- configuration as per DT defaults

Thanks!
2020-02-05 09:31:59 -08:00

25 lines
507 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",
"dragula-tests.ts"
]
}