tridactyl/tsconfig.json
Oliver Blanthorn e065c54b76
Swap to DefinitelyTyped types
I was getting fed up with web-ext-types missing some types
2020-07-01 17:37:48 +01:00

27 lines
616 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"noImplicitAny": false,
"noEmitOnError": true,
"outDir": "build/tsc-out",
"sourceMap": true,
"target": "es2017",
"lib": ["es2017","es2019.array", "es2018.promise", "dom", "dom.iterable"],
"experimentalDecorators": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"baseUrl": "src/",
"paths": {
"@src/*": ["*"]
}
},
"include": [
"./src/**/*"
],
"exclude": [
"./src/**/*.test.ts",
"./src/lib/test_utils.ts"
]
}