Files
awesome-cordova-plugins/tsconfig.json
T

28 lines
689 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": {
2021-09-27 17:07:03 +02:00
"@awesome-cordova-plugins/core": ["./dist/@awesome-cordova-plugins/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
},
2021-09-27 17:07:03 +02:00
"include": ["src/@awesome-cordova-plugins/plugins/**/*.ts"],
2017-12-28 07:28:44 -05:00
"angularCompilerOptions": {
2022-05-26 00:51:19 +08:00
"genDir": "aot",
"compilationMode": "partial"
2021-09-27 22:46:41 +02:00
}
2017-01-10 07:40:21 -05:00
}