Files
NativeScript/packages/webpack5/tsconfig.json
2020-12-01 19:25:29 +01:00

26 lines
563 B
JSON

{
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"target": "es2017",
"module": "commonjs",
"outDir": "./dist",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2017"],
"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"]
}