mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
30 lines
863 B
JSON
30 lines
863 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"target": "ES2020",
|
|
"module": "esnext",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"moduleResolution": "bundler",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noEmitOnError": true,
|
|
"noEmitHelpers": true,
|
|
"diagnostics": true,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"lib": ["ESNext", "dom"],
|
|
"types": ["node", "jest"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@nativescript/core": ["packages/core/index.ts"],
|
|
"@nativescript/core/*": ["packages/core/*"],
|
|
"@nativescript/types-android": ["packages/types-android/src/index.ts"],
|
|
"@nativescript/types-ios": ["packages/types-ios/src/index.ts"],
|
|
"@nativescript/workspace-plugin": ["tools/workspace-plugin/src/index.ts"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "tmp", "platforms", "__tests__"]
|
|
}
|