j2s/tsconfig.json

18 lines
507 B
JSON
Raw Permalink Normal View History

2025-01-06 11:24:58 +00:00
{
"include": ["src/lib/**/*.ts", "src/main/resources/lib/lib.d.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
}
}