mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
31 lines
630 B
JSON
31 lines
630 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmitOnError": true,
|
|
"noEmitHelpers": true,
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitUseStrict": true,
|
|
"removeComments": true,
|
|
"experimentalDecorators": true,
|
|
"diagnostics": true,
|
|
"sourceMap": false,
|
|
"types" : [
|
|
"node"
|
|
],
|
|
"lib": [
|
|
"es6", "dom"
|
|
],
|
|
"baseUrl": "."
|
|
},
|
|
"include": [
|
|
"**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"__tests__"
|
|
]
|
|
}
|