mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-03-25 00:00:14 +08:00
Bump targets from ES2020 to ES2022, update moduleResolution to "bundler" for tsconfigs (modern standard for bundler-consumed libraries) and Node16 for build scripts. Remove unused genDir: "aot" from angularCompilerOptions. Clean up stale .gitignore entries.
25 lines
644 B
JSON
25 lines
644 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"stripInternal": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noImplicitAny": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"rootDir": "src",
|
|
"target": "es2022",
|
|
"skipLibCheck": true,
|
|
"lib": ["es2022", "dom"],
|
|
"inlineSources": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/@awesome-cordova-plugins/core/**/*.ts"],
|
|
"exclude": ["node_modules", "src/@awesome-cordova-plugins/core/**/*.spec.ts"],
|
|
"angularCompilerOptions": {
|
|
"compilationMode": "partial"
|
|
}
|
|
}
|