mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 18:13:25 +00:00
23 lines
485 B
JSON
23 lines
485 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"outDir": "./lib",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["../*"],
|
|
"@entrypoint": ["../index.ts"]
|
|
}
|
|
},
|
|
"include": ["./"]
|
|
}
|