Files
NativeScript/packages/core/__tests__/tsconfig.json
Ruslan Lekhman 388d7eaa7d feat(core): support RGB alpha notation (#9699)
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>
2022-03-01 12:32:39 -08:00

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"]
}