mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
27 lines
575 B
JSON
27 lines
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"target": "ES2020",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2017"],
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"diagnostics": true,
|
|
"paths": {
|
|
"@nativescript/devtools": ["src"]
|
|
},
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"stripInternal": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|