es2c/tsconfig.json

18 lines
454 B
JSON
Raw Normal View History

2024-12-08 21:34:29 +00:00
{
"include": ["**/*.ts"],
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"module": "ESNext",
"target": "ESNext",
"lib": ["ESNext"],
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "dst",
"allowImportingTsExtensions": true,
"noEmit": true
}
}