2017-03-20 16:38:14 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"stripInternal": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
2017-12-28 07:28:44 -05:00
|
|
|
"noImplicitAny": true,
|
2017-03-20 16:38:14 -04:00
|
|
|
"module": "es2015",
|
|
|
|
|
"moduleResolution": "node",
|
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"],
|
2017-05-14 00:55:16 -04:00
|
|
|
"inlineSources": true,
|
2017-12-28 07:28:44 -05:00
|
|
|
"sourceMap": true
|
2017-03-20 16:38:14 -04:00
|
|
|
},
|
2020-02-07 11:51:47 -05:00
|
|
|
"include": ["src/@ionic-native/core/**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules", "src/@ionic-native/core/**/*.spec.ts"]
|
2017-03-20 16:38:14 -04:00
|
|
|
}
|