23 lines
615 B
JSON
23 lines
615 B
JSON
{
|
|
"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,
|
|
}
|
|
}
|