mirror of
https://gitea.redwind.top/Austin/subscription
synced 2024-11-16 07:42:21 +08:00
19 lines
465 B
JSON
19 lines
465 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["./src/**/*.ts", "./scripts/**/*.ts", "./types/**/*.ts"]
|
|
}
|