2022-11-12 11:58:11 +11:00
|
|
|
{
|
2023-04-14 20:47:58 +10:00
|
|
|
"compilerOptions": {
|
|
|
|
"skipLibCheck": true,
|
2023-09-04 13:34:08 +10:00
|
|
|
"removeComments": true,
|
2023-10-05 22:56:29 +11:00
|
|
|
"noUnusedLocals": true,
|
2023-04-14 20:47:58 +10:00
|
|
|
"resolveJsonModule": true,
|
2023-10-05 22:56:29 +11:00
|
|
|
"noUnusedParameters": true,
|
2023-04-14 20:47:58 +10:00
|
|
|
"target": "ES2022",
|
2024-05-05 15:51:55 +10:00
|
|
|
"module": "ES2022",
|
2024-03-08 09:08:09 +11:00
|
|
|
"baseUrl": ".",
|
2024-01-27 19:21:22 +11:00
|
|
|
"rootDir": "src",
|
|
|
|
"outDir": "dist",
|
2024-05-05 15:51:55 +10:00
|
|
|
"moduleResolution": "Bundler",
|
2023-12-25 02:21:40 +11:00
|
|
|
"typeRoots": [ "./src/interfaces.d.ts" ]
|
2023-04-14 20:47:58 +10:00
|
|
|
},
|
2024-01-27 19:21:22 +11:00
|
|
|
"include": [ "src" ],
|
2024-03-08 09:08:09 +11:00
|
|
|
"exclude": [ ".yarn/cache", ".yarn/unplugged", ".git", "src/*.json" ]
|
2023-05-21 10:28:44 +10:00
|
|
|
}
|