mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
26 lines
630 B
JSON
26 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "es2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"baseUrl": "./src",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*", "tests/**/*"],
|
|
"exclude": []
|
|
}
|