awesome-cordova-plugins/tsconfig.json
2021-09-27 17:07:03 +02:00

28 lines
710 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"stripInternal": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitAny": true,
"module": "es2015",
"moduleResolution": "node",
"paths": {
"@awesome-cordova-plugins/core": ["./dist/@awesome-cordova-plugins/core"]
},
"outDir": "./dist",
"rootDir": "src",
"target": "es5",
"skipLibCheck": true,
"lib": ["es2017", "dom"],
"inlineSources": true,
"inlineSourceMap": true
},
"include": ["src/@awesome-cordova-plugins/plugins/**/*.ts"],
"angularCompilerOptions": {
"genDir": "aot"
},
"plugins": [{ "name": "typescript-tslint-plugin" }]
}