2017-01-10 07:40:21 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2017-03-20 16:38:14 -04:00
|
|
|
"baseUrl": ".",
|
2017-01-10 07:40:21 -05:00
|
|
|
"declaration": true,
|
2017-03-20 16:38:14 -04:00
|
|
|
"stripInternal": true,
|
2017-01-10 07:40:21 -05:00
|
|
|
"experimentalDecorators": true,
|
2017-03-20 16:38:14 -04:00
|
|
|
"emitDecoratorMetadata": true,
|
2017-05-14 00:55:16 -04:00
|
|
|
"noImplicitAny": true,
|
2017-03-20 16:38:14 -04:00
|
|
|
"module": "es2015",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"paths": {
|
2017-12-28 07:40:57 -05:00
|
|
|
"@ionic-native/core": ["./dist/@ionic-native/core"]
|
2017-03-20 16:38:14 -04:00
|
|
|
},
|
2017-12-28 07:28:44 -05:00
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "src",
|
2017-03-20 16:38:14 -04:00
|
|
|
"target": "es5",
|
|
|
|
|
"skipLibCheck": true,
|
2017-12-28 07:28:44 -05:00
|
|
|
"lib": ["es2017", "dom"],
|
|
|
|
|
"inlineSources": true,
|
|
|
|
|
"inlineSourceMap": true
|
|
|
|
|
},
|
2020-02-07 11:51:47 -05:00
|
|
|
"include": ["src/@ionic-native/plugins/**/*.ts"],
|
2017-12-28 07:28:44 -05:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
|
"genDir": "aot"
|
2020-02-07 11:51:47 -05:00
|
|
|
},
|
|
|
|
|
"plugins": [{ "name": "typescript-tslint-plugin" }]
|
2017-01-10 07:40:21 -05:00
|
|
|
}
|