mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"noEmitOnError": false,
|
|
"noEmitHelpers": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"noImplicitUseStrict": true,
|
|
"removeComments": true,
|
|
"experimentalDecorators": true,
|
|
"diagnostics": true,
|
|
"sourceMap": true,
|
|
"inlineSourceMap": false,
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"chai",
|
|
"mocha"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@nativescript/core/*": [
|
|
"../nativescript-core/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"../nativescript-core/**/*.ts",
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"../nativescript-core/**/*.android.ts",
|
|
"../nativescript-core/**/*.android.d.ts",
|
|
"../nativescript-core/**/*.ios.ts",
|
|
"../nativescript-core/**/*.ios.d.ts",
|
|
"../nativescript-core/node-modules",
|
|
"../nativescript-core/references.d.ts",
|
|
"../nativescript-core/platforms"
|
|
]
|
|
} |