mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Functional notation: rgb[a](R G B[ / A]) CSS Colors Level 4 adds support for space-separated values in the functional notation. See https://www.w3.org/TR/css-color-4/#rgb-functions Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
24 lines
668 B
JSON
24 lines
668 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"]
|
|
}
|