2024-12-21 21:16:18 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2025-01-01 22:56:34 -06:00
|
|
|
"target": "ES6",
|
|
|
|
"module": "CommonJS",
|
2024-12-21 21:16:18 -06:00
|
|
|
"esModuleInterop": true,
|
2025-01-01 22:56:34 -06:00
|
|
|
"moduleResolution": "Node",
|
2025-01-02 14:43:32 -06:00
|
|
|
"sourceMap": true,
|
2024-12-21 21:16:18 -06:00
|
|
|
"baseUrl": ".",
|
|
|
|
"outDir": "dist",
|
|
|
|
"importsNotUsedAsValues": "remove",
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true
|
|
|
|
},
|
2024-12-29 14:35:30 -06:00
|
|
|
"include": [
|
|
|
|
"src/**/*",
|
|
|
|
"util/**/*",
|
|
|
|
"examples/**/*",
|
|
|
|
"scratch/**/*",
|
|
|
|
"__tests__/**/*"
|
|
|
|
],
|
2025-01-01 22:56:34 -06:00
|
|
|
"exclude": ["node_modules"]
|
2024-12-21 21:16:18 -06:00
|
|
|
}
|