2023-04-08 01:34:21 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"target": "ES2020",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
"outDir": "build"
|
|
|
|
},
|
|
|
|
"include": ["src"],
|
2023-04-08 04:32:24 -06:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"files": ["src/types/custom.d.ts"]
|
2023-04-08 01:34:21 -06:00
|
|
|
}
|