mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* chore(e2e): update config files * chore: update .gitignore file * chore: update references.d.ts file * chore: remove npm scripts * chore: update travis config
29 lines
575 B
JSON
29 lines
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noEmitHelpers": true,
|
|
"noEmitOnError": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": [
|
|
"app/*"
|
|
],
|
|
"*": [
|
|
"./node_modules/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"platforms"
|
|
]
|
|
}
|