mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Remove grunt-ts dependency.
Compile code using tsconfig.json files and plain tsc invocations. Call those using grunt-shell.
This commit is contained in:
28
tsconfig.node-tests.json
Normal file
28
tsconfig.node-tests.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"noEmitOnError": true,
|
||||
"noEmitHelpers": true,
|
||||
"target": "es5",
|
||||
"module": "commonjs",
|
||||
"declaration": false,
|
||||
"noImplicitAny": false,
|
||||
"noImplicitUseStrict": true,
|
||||
"experimentalDecorators": true,
|
||||
"sourceMap": true,
|
||||
"jsx": "react",
|
||||
"reactNamespace": "UIBuilder",
|
||||
"lib": [
|
||||
"es2016"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"tns-core-modules/js-libs/easysax/**/*.ts",
|
||||
"tns-core-modules/module.d.ts",
|
||||
"tns-core-modules/lib.core.d.ts",
|
||||
"tns-core-modules/lib.dom.d.ts",
|
||||
"tns-core-modules/es-collections.d.ts",
|
||||
"tns-core-modules/declarations.d.ts",
|
||||
"tns-core-modules/es6-promise.d.ts",
|
||||
"node-tests/**/*.ts"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user