2020-12-31 02:29:27 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-11-17 00:12:29 +01:00
|
|
|
"outDir": "dist",
|
2022-01-21 02:26:48 +01:00
|
|
|
"target": "ES2021",
|
|
|
|
"lib": ["ES2021", "DOM"],
|
2022-11-17 00:12:29 +01:00
|
|
|
"types": ["@types/jquery", "handlebars"],
|
2021-01-26 03:55:18 +01:00
|
|
|
"esModuleInterop": true,
|
2021-02-06 22:09:07 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-03-17 12:30:44 +01:00
|
|
|
"strict": true,
|
2022-02-13 18:34:03 +01:00
|
|
|
"noUncheckedIndexedAccess": true,
|
2022-05-29 17:47:27 +02:00
|
|
|
"noImplicitOverride": true,
|
2022-02-17 00:55:22 +01:00
|
|
|
"resolveJsonModule": true,
|
2022-11-17 00:12:29 +01:00
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"checkJs": false,
|
|
|
|
"allowJs": true
|
2021-01-29 11:23:34 +01:00
|
|
|
},
|
2022-11-17 00:12:29 +01:00
|
|
|
"include": ["src", "client", "common"]
|
2020-12-31 02:29:27 +01:00
|
|
|
}
|