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.
23 lines
615 B
23 lines
615 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.
|
|
"es2020", // Need this to use Promise.allSettled.
|
|
],
|
|
"paths": {
|
|
"*" : ["*", "./node_modules/@tsundoku/micromodal_types/*"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
}
|
|
}
|