mirror of
https://github.com/memodack/memodack.git
synced 2026-07-22 11:50:25 +00:00
19 lines
473 B
JSON
19 lines
473 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"lib": ["DOM", "ESNext"],
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "node",
|
|
"noEmit": false,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|