mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
25 lines
541 B
JSON
25 lines
541 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2018"],
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"diagnostics": true,
|
|
"paths": {
|
|
"@nativescript/webpack": ["src"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"stripInternal": true
|
|
},
|
|
"include": ["src", "scripts", "__tests__"],
|
|
"exclude": ["node_modules"]
|
|
}
|