mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
45 lines
1012 B
JSON
45 lines
1012 B
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": [
|
|
"../index.ts"
|
|
],
|
|
"@nativescript/core/*": [
|
|
"../*"
|
|
],
|
|
}
|
|
},
|
|
"include": [
|
|
"../global-types.d.ts",
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"../**/*.android.ts",
|
|
"../**/*.android.d.ts",
|
|
"../**/*.ios.ts",
|
|
"../**/*.ios.d.ts",
|
|
"../node-modules",
|
|
"../references.d.ts",
|
|
"../platforms"
|
|
]
|
|
} |