Files
awesome-cordova-plugins/tsconfig.json
T

28 lines
677 B
JSON
Raw Normal View History

2017-01-10 07:40:21 -05:00
{
"compilerOptions": {
"baseUrl": ".",
2017-01-10 07:40:21 -05:00
"declaration": true,
"stripInternal": true,
2017-01-10 07:40:21 -05:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2017-05-14 00:55:16 -04:00
"noImplicitAny": true,
"module": "es2015",
"moduleResolution": "node",
"paths": {
2017-12-28 07:40:57 -05:00
"@ionic-native/core": ["./dist/@ionic-native/core"]
},
2017-12-28 07:28:44 -05:00
"outDir": "./dist",
"rootDir": "src",
"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
}