Path: blob/main/plugins/default-browser-emulator/tsconfig.json
1028 views
{1"compileOnSave": true,2"compilerOptions": {3"incremental": true,4"target": "ES2019",5"module": "CommonJS",6"lib": ["ES2019", "DOM", "DOM.Iterable"],7"noImplicitAny": false,8"sourceMap": true,9"esModuleInterop": false,10"declaration": true,11"moduleResolution": "node",12"skipLibCheck": true,13"resolveJsonModule": true,14"allowJs": true,15"rootDir": ".",16"baseUrl": ".",17"outDir": "./build",18"preserveSymlinks": false,19"experimentalDecorators": true20},21"references": [],22"include": ["**/*.ts", "**/*.js", "**/*.json", ".eslintrc.js"],23"exclude": ["node_modules", "**/node_modules", "build", "build-dist", "data"]24}252627