You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
535 B
21 lines
535 B
{
|
|
"extends": "./tsconfig.base.json",
|
|
"include": [ "src/" ],
|
|
"exclude": [
|
|
"./node_modules/",
|
|
"./src/service_worker/",
|
|
"./src/gen/",
|
|
"./out"
|
|
],
|
|
"compilerOptions": {
|
|
"outDir": "./out/tsc",
|
|
"lib": [
|
|
"dom", // Need to be explicitly mentioned now since we're overriding default included libs.
|
|
"es2018", // Need this to use Object.values.
|
|
],
|
|
"paths": {
|
|
"*" : ["*", "./node_modules/@tsundoku/micromodal_types/*"]
|
|
},
|
|
}
|
|
}
|