j2s/lib/tsconfig.json

18 lines
464 B
JSON
Raw Permalink Normal View History

2025-01-06 11:24:58 +00:00
{
"include": ["**/*.ts"],
2025-01-06 11:24:58 +00:00
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ESNext",
"noLib": true,
2025-01-06 11:24:58 +00:00
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowImportingTsExtensions": true,
"noEmit": true
}
}