mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
28 lines
640 B
JSON
28 lines
640 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmitOnError": true,
|
|
"noEmitHelpers": true,
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitUseStrict": true,
|
|
"removeComments": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"diagnostics": true,
|
|
"sourceMap": true,
|
|
"inlineSourceMap": false,
|
|
"baseUrl": ".",
|
|
"outDir": "../../dist",
|
|
"types": ["node"],
|
|
"plugins": [
|
|
{
|
|
"transform": "../webpack/transformers/ns-transform-native-classes.ts",
|
|
"type": "raw"
|
|
}
|
|
]
|
|
},
|
|
"exclude": ["**/*.spec.ts", "dist", "__tests__"],
|
|
"include": ["**/*.ts", "./references.d.ts"]
|
|
}
|